forked from hi0001234d/nexpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 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
39
40
41
42
43
44
{
"name": "nexpath",
"version": "0.1.3",
"description": "Behaviour guidance system for vibe coders using AI coding agents",
"type": "module",
"bin": {
"nexpath": "./dist/cli/index.js",
"nexpath-serve": "./dist/server/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"['dist/cli/index.js','dist/server/index.js'].forEach(f => require('fs').chmodSync(f, 0o755))\"",
"dev:cli": "tsx src/cli/index.ts",
"dev:server": "tsx src/server/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.100.1",
"@clack/prompts": "^0.9",
"@modelcontextprotocol/sdk": "latest",
"@xenova/transformers": "^2.0.1",
"commander": "^12",
"cross-keychain": "^1.1.0",
"dotenv": "^17.4.2",
"natural": "^8.1.1",
"openai": "^6.34.0",
"sql.js": "^1",
"tinyld": "^1",
"zod": "^3"
},
"devDependencies": {
"@types/natural": "^5.1.5",
"@types/node": "^20",
"@types/sql.js": "^1",
"tsx": "^4",
"typescript": "^5",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=18"
}
}