-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 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
{
"name": "codesprint",
"version": "0.1.0",
"description": "GitHub-synced project manager with local-first kanban and backlog views",
"main": "out/main/index.js",
"author": "CassioJ2",
"private": true,
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"release:prepare": "node scripts/prepare-release-assets.cjs",
"dist": "npm run release:prepare && npm run build && electron-builder",
"dist:win": "npm run release:prepare && npm run build && electron-builder --win nsis",
"test:parser": "node src/main/parser/run-tests.cjs",
"test:ipc": "node src/main/ipc/run-smoke-tests.cjs",
"test:backend": "npm.cmd run test:parser && npm.cmd run test:ipc"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"electron-store": "^8.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^9.39.4",
"png-to-ico": "^3.0.1",
"typescript": "~5.9.3",
"vite": "^5.4.10"
},
"build": {
"appId": "com.codesprint.app",
"productName": "CodeSprint",
"directories": {
"output": "dist"
},
"asar": true,
"compression": "maximum",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [
"out/**/*",
"package.json"
],
"win": {
"icon": "build/icon.ico",
"executableName": "CodeSprint",
"target": "nsis",
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": false,
"runAfterFinish": false,
"uninstallDisplayName": "CodeSprint",
"shortcutName": "CodeSprint",
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico"
},
"mac": {
"icon": "build/icon.png",
"target": "dmg"
},
"linux": {
"icon": "build/icon.png",
"target": "AppImage"
}
}
}