-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.1 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
{
"name": "grimp",
"version": "1.4.0",
"private": true,
"description": "GRIMP (Generally Reliable Interactive Mapping Program): a map editor for Space Station 14.",
"author": "rebaserHEAD",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"electron:dev": "node electron/dev.mjs",
"make-icon": "node electron/make-icon.mjs",
"build": "tsc && vite build",
"build:electron": "tsc && vite build --base ./",
"package:dir": "npm run build:electron && electron-builder --win --dir --config.electronDist=node_modules/electron/dist",
"package": "npm run build:electron && electron-builder --win --config.electronDist=node_modules/electron/dist",
"test": "vitest run",
"test:watch": "vitest",
"test:dom": "vitest run --project dom",
"test:node": "vitest run --project node",
"typecheck": "tsc --noEmit",
"typecheck:strict": "node scripts/check-strict-indexing.mjs",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"js-yaml": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.8.0",
"jsdom": "^30.0.0",
"png-to-ico": "^3.0.2",
"prettier": "^3.9.6",
"sharp": "^0.35.3",
"tailwindcss": "^4.2.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.65.0",
"vite": "^6.2.0",
"vitest": "^4.0.18"
}
}