-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "guide-ide",
"version": "0.3.82",
"description": "guIDE Local First IDE",
"main": "electron-main.js",
"scripts": {
"start": "electron .",
"electron": "electron .",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"build:renderer": "cd frontend && npm run build",
"build:installers": "node scripts/build-installers.js",
"build:cuda": "node scripts/build-installers.js --cuda",
"build:cpu": "node scripts/build-installers.js --cpu",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"postinstall": "cd frontend && npm install"
},
"keywords": [
"ide",
"ai",
"local",
"llm",
"gguf",
"coding-assistant"
],
"author": "Brendan Gray (GitHub: FileShot)",
"license": "UNLICENSED",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chokidar": "^4.0.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"mime-types": "^2.1.35",
"node-llama-cpp": "^3.18.1",
"node-pty": "^1.0.0",
"playwright": "^1.59.1",
"prettier": "^3.5.3",
"ws": "^8.18.0"
},
"devDependencies": {
"electron": "^34.5.8",
"electron-builder": "^25.1.8"
}
}