-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
36
37
38
{
"name": "aidevelop-bot",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "tsx src/bot.ts",
"build": "tsc",
"build:bundle": "node scripts/build.mjs",
"build:exe": "npm run build:bundle && pkg dist/bot.cjs --targets node18-win-x64 --output dist/aidevelop-bot.exe",
"build:exe:bun": "bun build src/bot.ts --compile --outfile dist/aidevelop-bot.exe --target bun-windows-x64",
"dev": "tsx watch src/bot.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.1",
"@line/bot-sdk": "^10.6.0",
"diff2html": "^3.4.56",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"puppeteer": "^24.37.2"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.0",
"esbuild": "^0.27.3",
"pkg": "^5.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
},
"pkg": {
"assets": [
"node_modules/@anthropic-ai/claude-agent-sdk/cli.js"
],
"outputPath": "dist"
}
}