denonbu-feed/package.json

35 lines
943 B
JSON
Raw Normal View History

2023-05-10 14:56:30 +00:00
{
"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",
2023-05-16 03:06:25 +00:00
"start": "ts-node src/index.ts",
"build": "tsc"
2023-05-10 14:56:30 +00:00
},
"dependencies": {
"@atproto/api": "^0.3.7",
2023-05-11 04:20:44 +00:00
"@atproto/did-resolver": "^0.1.0",
2023-05-11 19:49:34 +00:00
"@atproto/lexicon": "^0.1.0",
2023-05-10 14:56:30 +00:00
"@atproto/repo": "^0.1.0",
"@atproto/uri": "^0.0.2",
2023-05-11 04:20:44 +00:00
"@atproto/xrpc-server": "^0.2.0",
2023-05-10 14:56:30 +00:00
"better-sqlite3": "^8.3.0",
"dotenv": "^16.0.3",
2023-05-10 14:56:30 +00:00
"express": "^4.18.2",
2023-05-11 19:49:34 +00:00
"kysely": "^0.22.0",
"multiformats": "^9.9.0"
2023-05-10 14:56:30 +00:00
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/express": "^4.17.17",
2023-05-11 19:49:34 +00:00
"@types/node": "^20.1.2",
2023-05-10 14:56:30 +00:00
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}