forked from Szotasz/marveen
-
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) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 884 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": "marveen",
"version": "1.23.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"setup": "tsx scripts/setup.ts",
"status": "tsx scripts/status.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"syntax-check": "node --check web/app.js web/sw.js",
"smoke": "playwright test --config=playwright.config.ts"
},
"engines": {
"node": ">=20 <24"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.116",
"better-sqlite3": "^11.7.0",
"cron-parser": "^5.0.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}