-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "eagle-plugin-mini-map",
"version": "0.2.0",
"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": {
"buffer": "^6.0.3",
"exif-reader": "^2.0.3",
"exifr": "^7.1.3",
"maplibre-gl": "^5.19.0",
"piexif-ts": "^2.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-map-gl": "^8.1.0",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^22.10.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=22"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}