-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 976 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
30
31
32
33
34
35
36
37
38
39
{
"name": "arc-raiders-loot-list",
"version": "1.0.0",
"type": "module",
"description": "Interactive loot decision tool for Arc Raiders - quickly determine what to keep, recycle, or sell",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fetch-data": "tsx scripts/fetch-data.ts",
"fetch-data-quick": "tsx scripts/fetch-data.ts --skip-maps",
"validate-data": "tsx scripts/validate-data.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"fuse.js": "^7.0.0",
"leaflet": "^1.9.4",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/leaflet": "^1.9.21",
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.11"
},
"keywords": [
"arc-raiders",
"loot",
"guide",
"cheat-sheet",
"recycling"
],
"author": "",
"license": "MIT",
"optionalDependencies": {
"@rollup/rollup-win32-x64-msvc": "^4.53.1"
}
}