-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 939 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 939 Bytes
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
{
"name": "hikr-extension",
"version": "0.2.11",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc --noEmit && powershell -ExecutionPolicy Bypass -File scripts/generate-logo.ps1 && vite build && node scripts/build-content.mjs && node scripts/mark-nobackup.mjs",
"build:firefox": "npm run build && node scripts/build-firefox.mjs",
"build:ci": "tsc --noEmit && vite build && node scripts/build-content.mjs",
"build:firefox:ci": "npm run build:ci && node scripts/build-firefox.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"leaflet": "^1.9.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/chrome": "^0.0.303",
"@types/leaflet": "^1.9.16",
"@types/node": "^22.10.5",
"esbuild": "^0.25.10",
"jsdom": "^25.0.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}