39 lines
1006 B
JSON
39 lines
1006 B
JSON
{
|
|
"name": "activitypress",
|
|
"version": "1.0.0",
|
|
"description": "Activitypub-enabled Markdown blog",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"new-migration": "npx knex --migrations-directory migrations --esm migrate:make"
|
|
},
|
|
"keywords": [
|
|
"blog",
|
|
"activitypub",
|
|
"markdown"
|
|
],
|
|
"author": "moon@shipoclu.com",
|
|
"license": "AGPL-3.0",
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/markdown-it": "^13.0.7",
|
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
"@typescript-eslint/parser": "^6.15.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.1",
|
|
"prettier": "3.1.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"activitypub-express": "^4.4.1",
|
|
"better-sqlite3": "^9.2.2",
|
|
"knex": "^3.1.0",
|
|
"markdown-it": "^14.0.0",
|
|
"sqlite3": "^5.1.6",
|
|
"zod": "^3.22.4"
|
|
}
|
|
}
|