-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 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
62
63
64
65
66
67
{
"name": "nextmap",
"version": "1.0.1",
"description": "A visual, interactive map of all your Next.js routes. Zero config.",
"type": "module",
"bin": {
"nextmap": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev:server": "tsx watch src/cli.ts",
"dev:client": "vite",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:client && npm run build:server",
"prepublishOnly": "npm run build"
},
"dependencies": {
"express": "^5.1.0",
"open": "^10.1.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@xyflow/react": "^12.0.0",
"autoprefixer": "^10.4.0",
"concurrently": "^9.1.0",
"lucide-react": "^0.468.0",
"postcss": "^8.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"zustand": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"author": "Sam Kavanagh",
"license": "MIT",
"homepage": "https://github.com/icydotdev/nextmap#readme",
"repository": {
"type": "git",
"url": "https://github.com/icydotdev/nextmap"
},
"keywords": [
"nextjs",
"next",
"routes",
"map",
"visualize",
"app-router",
"pages-router",
"dashboard",
"middleware",
"developer-tools",
"cli"
]
}