-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.73 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
{
"name": "vite-plugin-remix-routes",
"version": "0.4.1",
"description": "Use Remix routing in your Vite project",
"license": "MIT",
"author": "Jasper Van Gestel",
"repository": {
"type": "git",
"url": "https://github.com/vjee/vite-plugin-remix-routes"
},
"homepage": "https://github.com/vjee/vite-plugin-remix-routes",
"bugs": "https://github.com/vjee/vite-plugin-remix-routes/issues",
"type": "module",
"exports": {
".": {
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs",
"types": "./dist/node/index.d.ts"
},
"./client": {
"import": "./dist/client/index.js",
"require": "./dist/client/index.cjs",
"types": "./dist/client/index.d.ts"
},
"./virtual": {
"types": "./virtual.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"client": [
"dist/client"
]
}
},
"main": "dist/node/index.cjs",
"module": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"scripts": {
"build": "node scripts/build",
"build:watch": "npm run build --watch",
"test": "vitest --globals",
"prepublish": "npm run build"
},
"dependencies": {
"@remix-run/dev": "^1.7.2"
},
"devDependencies": {
"@types/react": "^18.0.21",
"react": "^18.2.0",
"react-router-dom": "^6.4.2",
"tsup": "^6.3.0",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vitest": "^0.24.3"
},
"peerDependencies": {
"react": ">=16.6",
"react-router-dom": "^6.4.2"
},
"files": [
"dist",
"virtual.d.ts"
],
"keywords": [
"vite",
"react",
"remix",
"run",
"routes",
"routing",
"router",
"pages",
"plugin",
"file",
"based"
]
}