-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.69 KB
/
package.json
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
{
"name": "calligro",
"version": "1.2.0",
"private": true,
"main": "src/electron/main.js",
"homepage": "./",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"version": "printenv npm_package_version | tr -d '\\n' > version.txt && cp version.txt electron_resources/version.txt && git add version.txt && git add electron_resources/version.txt",
"electron:dev": "cross-env ELECTRON_URL=http://localhost:5173 electron .",
"electron:build": "powershell -file build-electron.ps1",
"itch:upload": "powershell -file upload-itch.ps1"
},
"dependencies": {
"client-zip": "^1.2.2",
"font-list": "^1.4.3",
"js-cookie": "^2.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-github-corner": "^2.5.0",
"react-helmet": "^6.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"unicode-range-json": "^1.0.1",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/js-cookie": "^2.2.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.5",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@vitejs/plugin-react-swc": "^3.5.0",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-packager": "^17.1.2",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"nock": "^14.0.0-beta.18",
"sass-embedded": "^1.81.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vitest": "^2.1.6"
}
}