-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "osrs-world-map",
"version": "1.0.0",
"description": "Interactive Old School RuneScape world map built with Next.js and authentic game cache data",
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/osrs-world-map.git"
},
"keywords": [
"osrs",
"runescape",
"map",
"nextjs",
"react",
"leaflet",
"gaming"
],
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:with-tiles": "npm run clean && ./scripts/generate-tiles.sh && next build",
"clean": "rm -rf generated_images/ public/tiles/ cache/ .next/",
"start": "next start",
"lint": "next lint",
"migrate-markers": "ts-node scripts/migrate-markers.ts",
"check-dimensions": "./scripts/check-dimensions.sh",
"explore-worldmap": "./scripts/explore-worldmap-data.sh"
},
"dependencies": {
"leaflet": "^1.9.4",
"leaflet-canvas-marker": "^0.2.0",
"next": "14.2.35",
"react": "^18",
"react-dom": "^18",
"react-leaflet": "^4.2.1"
},
"devDependencies": {
"@types/leaflet": "^1.9.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}