-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.57 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
{
"name": "eagle-plugin-mini-map",
"version": "0.2.1",
"type": "module",
"author": "whitewater <me@waterwater.moe>",
"repository": {
"type": "git",
"url": "git@github.com:lawvs/eagle-plugin-mini-map.git"
},
"scripts": {
"dev": "vite",
"dev:eagle": "vite build --watch",
"type-check": "tsc --noEmit",
"build": "cp -r tests public/tests && tsc -b && vite build",
"test": "vitest run",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview"
},
"dependencies": {
"exifr": "^7.1.3",
"lucide-react": "^1.25.0",
"maplibre-gl": "^5.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-map-gl": "^8.1.1",
"tailwindcss": "^4.3.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=22"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}