-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.32 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
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
{
"name": "stellarmaps",
"version": "0.13.0-dev",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run tauri dev",
"dev:electron": "node ./scripts/electron-dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"svelte-check": "svelte-check --tsconfig ./tsconfig.json",
"tauri": "tauri",
"knip": "knip",
"update-git-hooks": "simple-git-hooks",
"commitlint": "commitlint --edit",
"generate-changelog": "commit-and-tag-version --skip.bump --skip.commit --skip.tag -t stellarmaps-v && prettier --write ./CHANGELOG.md",
"update-intl": "node ./scripts/update-intl",
"postinstall": "patch-package"
},
"simple-git-hooks": {
"pre-commit": "npm run knip && npm run svelte-check && npm run format:check && npm run lint",
"commit-msg": "npm run commitlint"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@electron-forge/cli": "^7.6.0",
"@electron-forge/plugin-fuses": "^7.6.0",
"@electron-forge/plugin-vite": "^7.6.0",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.16.0",
"@humanfs/node": "^0.16.6",
"@skeletonlabs/skeleton": "^2.10.3",
"@skeletonlabs/tw-plugin": "^0.4.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/forms": "^0.5.9",
"@tauri-apps/cli": "^2.1.0",
"@types/d3-color": "^3.1.3",
"@types/d3-delaunay": "^6.0.4",
"@types/d3-hsv": "^0.1.7",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-path": "^3.1.0",
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.6",
"@types/d3-zoom": "^3.0.8",
"@types/node": "^22.10.1",
"@types/polylabel": "^1.1.3",
"@types/topojson-client": "^3.1.5",
"@types/topojson-server": "^3.0.4",
"@types/topojson-simplify": "^3.0.3",
"@types/topojson-specification": "^1.0.5",
"autoprefixer": "^10.4.20",
"commit-and-tag-version": "^12.5.0",
"concurrently": "^9.1.0",
"electron": "^33.2.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.13.0",
"knip": "^5.39.2",
"patch-package": "^8.0.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"simple-git-hooks": "^2.11.1",
"svelte": "^4.2.14",
"svelte-check": "^4.1.1",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"utility-types": "^3.11.0",
"vite": "^5.4.11"
},
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.3",
"@turf/turf": "^7.1.0",
"acorn": "^8.14.0",
"alea": "^1.0.1",
"d3-color": "^3.1.0",
"d3-delaunay": "^6.0.4",
"d3-hsv": "^0.1.0",
"d3-interpolate": "^3.0.1",
"d3-path": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"intl-messageformat": "^10.7.7",
"pathkit-wasm": "^1.0.0",
"pixi.js": "^8.6.3",
"polylabel": "^2.0.1",
"rambda": "^9.4.0",
"romans": "^2.0.18",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3",
"ts-pattern": "^5.5.0",
"zod": "^3.23.8"
},
"main": ".vite/build/stellarmaps.js",
"productName": "games.michaelmakes.stellarmaps-electron"
}