-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "chad",
"version": "1.0.0",
"description": "CHAD - Coding, Hardware, and Automation Designer: A clustered, local AI system",
"main": "dist/main.js",
"author": "CHAD Team",
"license": "MIT",
"scripts": {
"build:ui": "npm --prefix ui run build",
"dev:ui": "npm --prefix ui run dev",
"build": "npm run build:ui && tsc -p tsconfig.json && node scripts/copy-assets.js",
"lint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "npm run build && electron .",
"dev": "npm run build && electron . --dev",
"watch": "tsc -p tsconfig.json --watch",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build",
"package": "npm run build && electron-builder"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"electron": "^29.4.6",
"electron-builder": "^24.13.3",
"eslint": "^9.39.2",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"build": {
"appId": "com.chad.app",
"productName": "CHAD",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
}
},
"dependencies": {
"@ai-sdk/openai": "^3.0.18",
"ai": "^6.0.49",
"yaml": "^2.8.2",
"zod": "^4.3.6"
}
}