-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "bch-tip-bot",
"version": "1.0.0",
"description": "Bitcoin Cash tip bot for X/Twitter",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:web": "tsc -p tsconfig.web.json",
"start": "node dist/index.js",
"start:web": "node dist-web/server.js",
"dev": "tsx src/index.ts",
"dev:web": "tsx web/server.ts",
"test": "vitest"
},
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.6.2",
"dotenv": "^17.3.1",
"cookie-parser": "^1.4.7",
"express": "^4.21.2",
"mainnet-js": "^3.1.7",
"pino": "^10.3.1",
"twitter-api-v2": "^1.29.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^4.17.21",
"@types/node": "^25.3.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}