-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.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
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
{
"name": "nodetool-electron",
"version": "0.7.0-rc.40",
"private": true,
"description": "node-based AI development tool",
"homepage": "https://nodetool.ai",
"main": "dist-electron/main.js",
"scripts": {
"start": "electron .",
"start:devmode": "electron .",
"chat": "electron . --chat",
"prepare-backend": "node ../scripts/bundle-backend.mjs",
"prepare-mcpb": "node ../scripts/build-mcpb.mjs --out mcpb/nodetool.mcpb",
"verify:python-packages": "node scripts/verify-python-packages.mjs",
"verify:bundle": "node scripts/verify-bundle.mjs",
"verify:backend-bundle": "node ../scripts/verify-backend-bundle.mjs",
"build": "tsc && vite build && node scripts/fetch-node-runtime.mjs && npm run prepare-backend && npm run prepare-mcpb && npm run verify:bundle && electron-builder",
"vite:build": "vite build && node scripts/verify-bundle.mjs",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"check": "tsc && eslint . && jest",
"dev": "vite",
"preview": "vite preview",
"predist": "npm run build",
"dist": "electron-builder",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"rebuild:native": "node scripts/rebuild-native.mjs"
},
"author": "matti.georgi@gmail.com",
"license": "AGPL-3.0-only",
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitejs/plugin-react": "^6.0.2",
"electron": "39.8.10",
"electron-builder": "26.15.3",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"jest": "^29.7.0",
"ts-jest": "^29.4.11",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vite-plugin-electron": "^0.29.1"
},
"dependencies": {
"@nodetool-ai/node-sdk": "*",
"@nodetool-ai/protocol": "*",
"@nodetool-ai/sandbox-compiler": "*",
"@trpc/client": "^11.17.0",
"better-sqlite3": "^12.11.1",
"bufferutil": "^4.1.0",
"electron-log": "^5.4.4",
"electron-updater": "^6.8.9",
"js-yaml": "^4.3.2",
"node-llama-cpp": "^3.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sharp": "^0.35.1",
"sqlite-vec": "^0.1.9",
"ws": "^8.21.0",
"zod": "^4.4.3",
"zustand": "^5.0.14",
"@nodetool-ai/websocket": "*",
"msgpackr": "^1.12.1"
},
"overrides": {
"minimatch": ">=3.1.4",
"undici": ">=6.24.0",
"flatted": ">=3.4.2",
"lodash": ">=4.17.23",
"ajv": ">=6.14.0"
},
"permissions": [
"audioCapture"
],
"repository": {
"type": "git",
"url": "https://github.com/nodetool-ai/nodetool.git"
}
}