-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.94 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dietcode",
"publisher": "dietcode",
"version": "2.7.12",
"icon": "assets/vsix/extension-icon.png",
"type": "module",
"private": true,
"description": "Sovereign Hive Architecture for DietCode - Zero-Shim AI Orchestration CLI",
"repository": "https://github.com/CardSorting/DietCode",
"main": "./dist/index.js",
"scripts": {
"build:cli": "bun build ./index.ts --outfile=./dist/index.js --target=node --external better-sqlite3 --external @noorm/broccoliq",
"sync:native": "bun ./scripts/sync_native_modules.ts",
"build": "npm run build:cli && npm run sync:native",
"dev": "tsc --watch",
"cli": "node ./dist/index.js",
"cli:dev": "node ./index.ts",
"link": "npm link",
"postinstall": "npm run build:cli && npm run link",
"test": "vitest run",
"lint": "biome lint . && eslint .",
"format": "biome format . --write",
"check": "biome check --apply .",
"verify": "npx tsx verify_advanced_infrastructure.ts"
},
"bin": {
"dietcode": "./dist/index.js"
},
"dependencies": {
"@google-cloud/vertexai": "^1.11.0",
"@google/genai": "^1.49.0",
"@google/generative-ai": "^0.24.1",
"@noorm/broccoliq": "^2.3.0",
"better-sqlite3": "^12.8.0",
"clsx": "^2.1.1",
"kysely": "^0.28.2",
"undici": "^7.24.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@electron/rebuild": "^4.0.3",
"@eslint/js": "^9.10.0",
"@types/better-sqlite3": "^7.6.12",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.2",
"@types/vscode": "^1.90.0",
"@vscode/vsce": "^3.7.1",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"globby": "^16.2.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vitest": "^3.2.4"
},
"overrides": {
"better-sqlite3": "^12.8.0"
},
"license": "MIT"
}