-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "vite-plugin-react-views",
"version": "2.1.1",
"description": "A vite plugin based on File System for creating routes automatically.",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite build --watch",
"build": "vite build && tsc",
"test": "pnpm test-serve && pnpm test-build",
"test-serve": "vitest run",
"test-build": "VITEST_BUILD=1 vitest run"
},
"homepage": "https://github.com/KAROTT7/vite-plugin-react-views",
"keywords": [
"vite",
"vite-plugin",
"react",
"router",
"react-router"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"files": [
"dist"
],
"author": "KAROTT7",
"license": "MIT",
"dependencies": {
"es-module-lexer": "^1.2.1"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@types/react": "^18.0.28",
"playwright-chromium": "^1.27.1",
"react-router-dom": ">=6.9.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.5"
},
"peerDependencies": {
"react-router-dom": ">=6.9.0"
}
}