-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "terramap.github.io",
"version": "1.0.0",
"description": "TerraMap is an interactive Terraria v1.4.5 world map viewer that loads quickly and lets you pan, zoom, find blocks, ores, items in chests, dungeons, NPCs, etc.",
"type": "module",
"scripts": {
"start": "vite",
"test": "npm run lint && npm run typecheck && npm run vitest",
"lint": "eslint",
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"vitest": "vitest run",
"vitest:watch": "vitest",
"perf": "vitest run -c vitest.perf.config.ts --reporter=verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/file-saver": "^2.0.7",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.6.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^6.4.2",
"vitest": "^4.1.7"
},
"dependencies": {
"@panzoom/panzoom": "^4.6.2",
"antd": "^6.4.3",
"color-convert": "^3.1.3",
"file-saver": "^2.0.5",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"thenby": "^1.4.1"
}
}