forked from mergeos-bounties/Gomi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.07 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
{
"name": "gomi-ide",
"version": "0.1.0",
"private": true,
"description": "Gomi Office IDE: Multi-Agent Development Environment",
"author": "Gomi",
"license": "MIT",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc -b && vite build",
"build:webview": "tsc -b && vite build --outDir build/gomi-office-webview --emptyOutDir",
"generate:brand-assets": "node scripts/generate-gomi-brand-assets.mjs",
"preview": "vite preview --host 127.0.0.1",
"test": "vitest run",
"typecheck": "tsc -b",
"verify:release": "vitest run tests/releaseReadiness.test.ts tests/codeOssIntegrationManifest.test.ts tests/codeOssIntegrationDryRun.test.ts",
"electron:start": "electron .",
"electron:dev": "node scripts/run-electron-dev.mjs",
"desktop:dir": "npm run build && electron-builder --win --dir",
"desktop:build": "npm run build && electron-builder --win"
},
"dependencies": {
"lucide-react": "^0.475.0",
"phaser": "^3.87.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^5.0.0",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"playwright": "^1.60.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"build": {
"appId": "com.gomi.ide",
"productName": "Gomi IDE",
"copyright": "Copyright (c) Gomi",
"directories": {
"output": "release/desktop",
"buildResources": "resources/gomi-branding"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"win": {
"target": [
"nsis"
],
"icon": "resources/gomi-branding/win32/gomi.ico",
"artifactName": "Gomi-IDE-Setup-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "Gomi IDE",
"uninstallDisplayName": "Gomi IDE"
}
}
}