forked from oedotme/generouted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.19 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
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
{
"name": "@generouted/solid-router",
"version": "1.19.9",
"description": "Generated file-based routes for Solid Router and Vite",
"author": "Omar Elhawary <oedotme@gmail.com> (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": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js"
},
"./lazy": {
"types": "./dist/index-lazy.d.ts",
"import": "./dist/index-lazy.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./plugin": {
"types": "./dist/plugin/index.d.ts",
"require": "./dist/plugin/index.cjs",
"import": "./dist/plugin/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"core": [
"./dist/core.d.ts"
],
"lazy": [
"./dist/index-lazy.d.ts"
],
"client": [
"./dist/client/index.d.ts"
],
"plugin": [
"./dist/plugin/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup --clean",
"type-check": "tsc --noEmit"
},
"dependencies": {
"fast-glob": "^3.3.2",
"generouted": "^1.19.9"
},
"devDependencies": {
"@generouted/core": "workspace:*",
"@solidjs/router": "^0.15.0",
"esbuild-plugin-solid": "^0.6.0",
"solid-js": "^1.9.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"peerDependencies": {
"@solidjs/router": ">=0.8",
"solid-js": ">=1",
"vite": ">=3"
}
}