-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.48 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.48 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
{
"name": "intelligent-code-agents",
"version": "12.3.0",
"private": true,
"description": "ICA cross-platform interactive installer, CLI, and dashboard",
"bin": {
"ica": "dist/src/installer-cli/index.js"
},
"scripts": {
"clean:compiled-tests": "node -e \"const fs=require('fs');fs.rmSync('dist/tests',{recursive:true,force:true});\"",
"build": "tsc -p tsconfig.json && node dist/src/installer-core/catalog/generateCatalog.js && npm run build:dashboard:web",
"build:dashboard:web": "vite build --config src/installer-dashboard/web/vite.config.ts",
"dev:dashboard:web": "vite --config src/installer-dashboard/web/vite.config.ts",
"start:dashboard": "node dist/src/installer-dashboard/server/index.js",
"build:quick": "npm run clean:compiled-tests && tsc -p tsconfig.json && node dist/src/installer-core/catalog/generateCatalog.js",
"skill:trigger-check": "node scripts/skill-trigger-check.mjs",
"test": "npm run build:quick && node --test dist/tests/installer/*.test.js && bash tests/run-tests.sh"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/multipart": "^9.4.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"fastify": "^5.2.1"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/ws": "^8.18.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"ws": "^8.19.0"
}
}