-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@matecore/codeclub",
"version": "1.2.0",
"description": "Open Source AI IDE with coding, design, and project management modes. BYOK, no telemetry, no cloud.",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Ignacio Agustin Angelone",
"email": "iangel.oned@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Matecore-repo/CodeClubIDE.git"
},
"main": "./out/main/index.cjs",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"build:wasm": "cd src/wasm-renderer && wasm-pack build --target web --out-dir pkg",
"cargo:build": "node scripts/build-engine.mjs",
"cargo:build:release": "node scripts/build-engine.mjs --release",
"check": "vp check",
"dev": "node scripts/dev.mjs",
"build": "npm run cargo:build:release && vp build && vp pack",
"preview": "vp preview",
"package": "electron-builder --config electron-builder.config.ts",
"package:mac": "electron-builder --config electron-builder.config.ts --mac",
"package:win": "electron-builder --config electron-builder.config.ts --win",
"package:linux": "electron-builder --config electron-builder.config.ts --linux",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test": "vp test",
"test:ast-agent": "node testing/tools/e2e.mjs",
"test:ide-tools": "vitest run testing/tools/ide-tools.e2e.test.ts",
"test:graph": "vitest run tests/topographic_graph.test.ts tests/structural_identity.test.ts src/main/indexer/workspaceIndex.test.ts",
"benchmark:topographic-lifecycle": "vitest run tests/topographic_lifecycle.ai.test.ts",
"test:watch": "vp test watch"
},
"dependencies": {
"3d-force-graph": "^1.80.0",
"@anthropic-ai/sdk": "^0.105.0",
"@electron-toolkit/utils": "^4.0.0",
"@google/genai": "^2.10.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@monaco-editor/react": "^4.7.0",
"@open-pencil/core": "^0.13.2",
"@types/canvaskit-wasm": "^0.18.5",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"canvaskit-wasm": "^0.41.1",
"d3-force-3d": "^3.0.5",
"dompurify": "^3.4.11",
"electron-updater": "^6.8.9",
"gpt-tokenizer": "^3.4.0",
"minimatch": "^10.2.5",
"node-pty": "^1.1.0",
"openai": "^6.42.0",
"rbush": "^4.0.1",
"three": "^0.184.0",
"v8-compile-cache": "^2.4.0",
"ws": "^8.21.0",
"yoga-layout": "^3.2.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/rbush": "^4.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.184.1",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.3",
"dotenv": "^17.4.2",
"electron": "^42.5.1",
"electron-builder": "^26.15.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.6.0",
"vite-plus": "latest"
},
"overrides": {
"dompurify": "$dompurify",
"expr-eval": "npm:expr-eval-fork@^3.0.1"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "11.17.0",
"onFail": "warn"
}
}
}