forked from oedotme/generouted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.19 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
{
"name": "generouted",
"version": "1.6.0",
"description": "Generated client-side file-based routes for Vite",
"author": "Omar Elhawary <[email protected]> (https://omarelhawary.me)",
"license": "MIT",
"repository": "https://github.com/oedotme/generouted",
"bugs": "https://github.com/oedotme/generouted/issues",
"homepage": "https://github.com/oedotme/generouted#readme",
"keywords": [
"actions",
"code-splitting",
"data-loaders",
"file-based-routing",
"generate",
"nested-layouts",
"nextjs",
"pages",
"pre-loading ",
"react",
"react-location",
"react-router",
"react-router-dom",
"remix",
"router",
"routes",
"solid",
"solid-router",
"typescript",
"vite"
],
"type": "module",
"exports": {
"./": {
"types": "./src/react-location.tsx",
"import": "./src/react-location.tsx"
},
"./react-location": {
"types": "./src/react-location.tsx",
"import": "./src/react-location.tsx"
},
"./react-router": {
"types": "./src/react-router.tsx",
"import": "./src/react-router.tsx"
},
"./solid-router": {
"types": "./src/solid-router.tsx",
"import": "./src/solid-router.tsx"
}
},
"typesVersions": {
"*": {
"react-location": [
"./src/react-location.tsx"
],
"react-router": [
"./src/react-router.tsx"
],
"solid-router": [
"./src/solid-router.tsx"
]
}
},
"files": [
"src"
],
"scripts": {
"type-check": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"release": "np --no-cleanup --no-tests --message 'release: %s'",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@solidjs/router": "^0.5.0",
"@tanstack/react-location": "^3.7.4",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"np": "^7.6.2",
"prettier": "^2.7.1",
"react-router-dom": "^6.4.3",
"solid-js": "^1.6.1",
"typescript": "^4.8.4",
"vite": "^3.2.2"
},
"peerDependencies": {
"vite": ">=3"
}
}