40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "feed-generator",
|
|
"version": "1.0.0",
|
|
"description": "atproto feed generator starter kit",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:bluesky-social/feed-generator.git",
|
|
"author": "dholms <dtholmgren@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"publishFeed": "ts-node scripts/publishFeedGen.ts",
|
|
"unpublishFeed": "ts-node scripts/unpublishFeedGen.ts",
|
|
"start": "ts-node src/index.ts",
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@atproto/api": "^0.6.20",
|
|
"@atproto/identity": "^0.2.1",
|
|
"@atproto/lexicon": "^0.2.2",
|
|
"@atproto/repo": "^0.3.2",
|
|
"@atproto/syntax": "^0.1.2",
|
|
"@atproto/xrpc-server": "^0.6.0",
|
|
"better-sqlite3": "^11.3.0",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"kysely": "^0.27.4",
|
|
"multiformats": "^9.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.11",
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.1.2",
|
|
"inquirer": "^12.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18",
|
|
"yarn": "1"
|
|
}
|
|
}
|