-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.93 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
{
"name": "codebase-colony",
"version": "0.3.0",
"private": true,
"author": {
"name": "Codebase Colony Contributors"
},
"description": "A living isometric city generated from a real Git repository.",
"type": "module",
"main": "dist-electron/electron/main.js",
"scripts": {
"dev": "npm run build:electron && concurrently -k \"vite --host 127.0.0.1\" \"tsc -p tsconfig.electron.json --watch --preserveWatchOutput\" \"wait-on http://127.0.0.1:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .\"",
"start": "npm run build && electron .",
"build": "npm run typecheck && npm run build:renderer && npm run build:electron",
"build:renderer": "vite build",
"build:electron": "tsc -p tsconfig.electron.json",
"pack:win": "npm run build && electron-builder --win dir --x64",
"dist:win": "npm run build && electron-builder --win nsis --x64",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.electron.json --noEmit",
"lint": "eslint . --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"profile:analysis": "npm run build:electron && node scripts/profile-analysis.mjs"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "5.3.0",
"@fontsource/oxanium": "5.3.0",
"@fontsource/space-grotesk": "5.3.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"typescript": "6.0.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "26.3.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.1.0",
"concurrently": "10.0.5",
"cross-env": "10.1.0",
"electron": "43.4.1",
"electron-builder": "26.15.3",
"eslint": "10.9.1",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.4",
"globals": "17.11.0",
"typescript-eslint": "8.68.0",
"vite": "8.2.2",
"vitest": "4.1.11",
"wait-on": "9.1.0"
},
"build": {
"appId": "com.codebasecolony.desktop",
"productName": "Codebase Colony",
"copyright": "Copyright © 2026 Codebase Colony contributors",
"asar": true,
"compression": "maximum",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"build/icon.png",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico",
"artifactName": "Codebase-Colony-Setup-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Codebase Colony",
"uninstallDisplayName": "Codebase Colony",
"deleteAppDataOnUninstall": false,
"runAfterFinish": true
}
}
}