-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
124 lines (124 loc) · 2.93 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
{
"name": "vite-plugin-pages",
"type": "module",
"version": "0.32.4",
"packageManager": "[email protected]",
"description": "File system base vue-router plugin for Vite",
"author": "hannoeru <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/hannoeru/vite-plugin-pages",
"repository": {
"type": "git",
"url": "https://github.com/hannoeru/vite-plugin-pages"
},
"bugs": "https://github.com/hannoeru/vite-plugin-pages/issues",
"keywords": [
"vite",
"vue",
"vue-router",
"react",
"react-router",
"solid-js",
"@solidjs/router",
"file-system-based",
"routing"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./client.d.ts"
},
"./client-react": {
"types": "./client-react.d.ts"
},
"./client-solid": {
"types": "./client-solid.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"client-react.d.ts",
"client-solid.d.ts",
"client.d.ts",
"dist"
],
"scripts": {
"dev": "npm run build -- --watch --ignore-watch examples",
"build": "tsup",
"play": "pnpm --filter vue dev",
"play:react": "pnpm --filter react dev",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --tag --push",
"publish:ci": "esno scripts/publish.ts",
"test": "vitest",
"test:e2e": "vitest -c vitest.config.e2e.ts",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"@vue/compiler-sfc": "^2.7.0 || ^3.0.0",
"vite": "^2.0.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"@solidjs/router": {
"optional": true
},
"@vue/compiler-sfc": {
"optional": true
},
"react-router": {
"optional": true
},
"vue-router": {
"optional": true
}
},
"dependencies": {
"@types/debug": "^4.1.12",
"debug": "^4.4.0",
"dequal": "^2.0.3",
"extract-comments": "^1.1.0",
"fast-glob": "^3.3.2",
"json5": "^2.2.3",
"local-pkg": "^0.5.1",
"picocolors": "^1.1.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@antfu/utils": "^0.7.10",
"@solidjs/router": "^0.15.2",
"@types/glob-to-regexp": "^0.4.4",
"@types/node": "^22.10.2",
"@vitest/ui": "^2.1.8",
"@vue/compiler-sfc": "^3.5.13",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"esno": "^4.8.0",
"playwright": "^1.49.1",
"react": "^19.0.0",
"react-router": "^7.1.1",
"solid-js": "^1.9.3",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "*"
}
}
}
}