34 lines
943 B
JSON
34 lines
943 B
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",
|
|
"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.3.2",
|
|
"better-sqlite3": "^8.3.0",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"kysely": "^0.22.0",
|
|
"multiformats": "^9.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.4",
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.1.2",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|