-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
165 lines (165 loc) · 4.75 KB
/
package.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "react-router-devtools",
"description": "Devtools for React Router - debug, trace, find hydration errors, catch bugs and inspect server/client data with react-router-devtools",
"author": "Alem Tuzlak",
"version": "1.0.4",
"license": "MIT",
"keywords": [
"react-router",
"react-router-dev-tools",
"react-router-development-tools",
"hydration-debugger",
"react-router-debugger",
"react-router-debugger-ui",
"react-router-debugger-ui-react",
"view-source",
"react-router-logger",
"react-router-dev-server",
"hydration-mismatch"
],
"private": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"import": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"./context": {
"import": {
"types": "./dist/context.d.ts",
"default": "./dist/context.js"
},
"types": "./dist/context.d.ts",
"default": "./dist/context.js"
},
"./server": {
"import": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./client.css": {
"import": "./dist/client.css",
"require": "./dist/client.css"
}
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/forge42dev/react-router-devtools.git"
},
"bugs": {
"url": "https://github.com/forge42dev/react-router-devtools/issues"
},
"homepage": "https://react-router-devtools.forge42.dev/",
"readme": "https://github.com/forge42dev/react-router-devtools#readme",
"scripts": {
"clean": "git clean -fdX --exclude=\"!.env\"",
"docs": "npm run dev -w docs",
"prepublishOnly": "npm run build",
"react-router-vite": "npm run dev -w test-apps/react-router-vite",
"runner": "npm-run-all -s build -p watch-all",
"dev": "npm run runner react-router-vite",
"build": "run-s tsup:* -- --clean",
"watch-all": "npm-run-all -p tsup:index:watch tsup:client:watch tsup:server:watch tsup:context:watch -- --watch",
"tsup:index": "tsup",
"tsup:index:watch": "tsup --watch",
"tsup:client": "tsup --config tsup-client.config.ts",
"tsup:context": "tsup --config tsup-context.config.ts",
"tsup:server": "tsup --config tsup-server.config.ts",
"tsup:context:watch": "npm run tsup:context -- --watch",
"tsup:client:watch": "npm run tsup:client -- --watch",
"tsup:server:watch": "npm run tsup:server -- --watch",
"check": "biome check .",
"check:fix": "biome check --fix .",
"test": "vitest run",
"test:ui": "vitest --ui --api 6532",
"test:debug": "jest-preview",
"test:live": "npm-run-all -p test:ui test:debug",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"validate": "npm run check && npm run typecheck && npm run test",
"run:scripts": "tsx",
"script": "npm run run:scripts scripts/setup.ts",
"icons": "npm run run:scripts scripts/icons.ts",
"check:unused": "knip "
},
"workspaces": [".", "test-apps/*"],
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"react-router": ">=7.0.0",
"vite": ">=5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@react-router/dev": "7.0.0",
"@react-router/node": "7.0.0",
"@react-router/serve": "7.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/babel__core": "^7.20.5",
"@types/beautify": "^0.0.3",
"@types/node": "^20.16.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"autoprefixer": "^10.4.20",
"glob": "^11.0.0",
"happy-dom": "^15.7.4",
"jest-preview": "^0.3.1",
"knip": "^5.34.0",
"lefthook": "^1.8.0",
"node-html-parser": "^6.1.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prompt": "^1.3.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.5"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-select": "^1.2.2",
"beautify": "^0.0.8",
"chalk": "^5.3.0",
"clsx": "^2.0.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.10",
"react-d3-tree": "^3.6.2",
"react-diff-viewer-continued": "^3.3.1",
"react-hotkeys-hook": "^4.5.0",
"react-tooltip": "^5.28.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.4.1"
}
}