-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 5.05 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 5.05 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "off-grid-ai",
"productName": "Off Grid AI Desktop",
"version": "0.0.42",
"description": "Off Grid AI — a private, local-first AI that runs open models (text, vision, image, voice) entirely on your device. No cloud, no accounts.",
"license": "AGPL-3.0-only",
"main": "./out/main/index.js",
"author": "Off Grid AI <hello@getoffgridai.co>",
"homepage": "https://getoffgridai.co",
"scripts": {
"prepare": "git config core.hooksPath scripts/hooks || true",
"format": "prettier --write .",
"lint": "eslint --cache .",
"test": "vitest run --project product-integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --project product-integration",
"test:heavy": "vitest run --project model-port-integration --project packaging-integration",
"verify:catalog": "node scripts/verify-catalog-projectors.mjs",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"demo": "npm run build && npm run demo:run",
"demo:run": "mkdir -p \"$PWD/.demo-profile\" && ln -sfn \"$HOME/Library/Application Support/Off Grid AI Desktop/models\" \"$PWD/.demo-profile/models\" && OFFGRID_PRO=1 OFFGRID_SEED=force OFFGRID_SEED_PRO=force OFFGRID_USER_DATA=\"$PWD/.demo-profile\" electron-vite preview",
"demo:fresh": "rm -rf \"$PWD/.demo-profile\" && npm run demo",
"dev": "electron-vite dev",
"gateway": "OFFGRID_SERVER_ONLY=1 electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"test:e2e": "electron-vite build && playwright test",
"smoke": "bash scripts/smoke-api.sh",
"smoke:packaged": "bash scripts/smoke-packaged.sh",
"smoke:dmg": "bash scripts/smoke-dmg-install.sh",
"test:swift": "cd swift-tests/TextExtractorKit && swift test",
"test:db": "bash scripts/test-db.sh",
"depcruise": "depcruise --config .dependency-cruiser.cjs \"src/**/*.ts\" \"src/**/*.tsx\"",
"knip": "knip --no-gitignore"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@lancedb/lancedb": "^0.30.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@offgrid/clipboard": "file:./packages/clipboard",
"@offgrid/design": "file:./packages/design",
"@offgrid/models": "file:./packages/models",
"@offgrid/rag": "file:./packages/rag",
"@phosphor-icons/react": "^2.1.10",
"@scure/bip39": "^2.2.0",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/vite": "^4.1.18",
"@xenova/transformers": "^2.17.2",
"apache-arrow": "^18.1.0",
"async-mutex": "^0.5.0",
"better-sqlite3": "^12.6.2",
"better-sqlite3-multiple-ciphers": "^12.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"electron-updater": "^6.8.9",
"get-windows": "^9.3.0",
"hash-wasm": "^4.12.0",
"jszip": "^3.10.1",
"kdbxweb": "^2.1.1",
"kokoro-js": "^1.2.1",
"mammoth": "^1.8.0",
"mdast-util-to-string": "^4.0.0",
"motion": "^12.27.1",
"node-machine-id": "^1.1.12",
"ollama": "^0.6.3",
"pdf-parse": "^1.1.1",
"radix-ui": "^1.6.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.1.9",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"sharp": "^0.35.2",
"tailwind-merge": "^3.4.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@electron/asar": "3.4.1",
"@playwright/test": "^1.61.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.4.23",
"dependency-cruiser": "^18.0.0",
"electron": "^39.2.6",
"electron-builder": "26.15.3",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-sonarjs": "^4.1.0",
"js-yaml": "^4.3.0",
"jsdom": "^29.1.1",
"knip": "^6.25.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^7.2.6",
"vitest": "^4.0.17"
}
}