vite-plugin-pages2 0.34.5 → 0.34.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +135 -135
package/package.json CHANGED
@@ -1,135 +1,135 @@
1
- {
2
- "name": "vite-plugin-pages2",
3
- "type": "module",
4
- "version": "0.34.5",
5
- "packageManager": "pnpm@10.18.1",
6
- "description": "File system base vue-router plugin for Vite",
7
- "author": "wuc656 <wuc656@gmail.com>, hannoeru <me@hanlee.co>",
8
- "license": "MIT",
9
- "homepage": "https://github.com/wuc656/vite-plugin-pages",
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/wuc656/vite-plugin-pages.git"
13
- },
14
- "bugs": "https://github.com/wuc656/vite-plugin-pages/issues",
15
- "keywords": [
16
- "vite",
17
- "vue",
18
- "vue-router",
19
- "react",
20
- "react-router",
21
- "solid-js",
22
- "@solidjs/router",
23
- "file-system-based",
24
- "routing"
25
- ],
26
- "exports": {
27
- ".": {
28
- "types": "./dist/index.d.ts",
29
- "import": "./dist/index.js",
30
- "require": "./dist/index.cjs"
31
- },
32
- "./client": {
33
- "types": "./client.d.ts"
34
- },
35
- "./client-react": {
36
- "types": "./client-react.d.ts"
37
- },
38
- "./client-solid": {
39
- "types": "./client-solid.d.ts"
40
- }
41
- },
42
- "main": "dist/index.js",
43
- "types": "dist/index.d.ts",
44
- "files": [
45
- "LICENSE",
46
- "client-react.d.ts",
47
- "client-solid.d.ts",
48
- "client.d.ts",
49
- "dist"
50
- ],
51
- "scripts": {
52
- "dev": "npm run build -- --watch --ignore-watch examples",
53
- "build": "tsup",
54
- "play": "pnpm --filter vue dev",
55
- "play:react": "pnpm --filter react dev",
56
- "prepublishOnly": "npm run build",
57
- "release": "bumpp --commit --tag --push && npm publish",
58
- "publish:ci": "tsx scripts/publish.ts",
59
- "test": "vitest",
60
- "test:e2e": "vitest -c vitest.config.e2e.ts",
61
- "test:ui": "vitest --ui",
62
- "lint": "eslint .",
63
- "lint:fix": "eslint . --fix",
64
- "type-check": "tsc --noEmit"
65
- },
66
- "peerDependencies": {
67
- "@vue/compiler-sfc": "^2.7.0 || ^3.0.0",
68
- "vite": "^2.0.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
69
- },
70
- "peerDependenciesMeta": {
71
- "@solidjs/router": {
72
- "optional": true
73
- },
74
- "@vue/compiler-sfc": {
75
- "optional": true
76
- },
77
- "react-router": {
78
- "optional": true
79
- },
80
- "vue-router": {
81
- "optional": true
82
- }
83
- },
84
- "dependencies": {
85
- "@types/debug": "^4.1.12",
86
- "debug": "^4.4.3",
87
- "dequal": "^2.0.3",
88
- "extract-comments": "^1.1.0",
89
- "json5": "^2.2.3",
90
- "local-pkg": "^1.1.2",
91
- "micromatch": "^4.0.8",
92
- "picocolors": "^1.1.1",
93
- "tinyglobby": "^0.2.15",
94
- "yaml": "^2.8.1"
95
- },
96
- "devDependencies": {
97
- "@antfu/eslint-config": "^5.4.1",
98
- "@antfu/utils": "^9.3.0",
99
- "@solidjs/router": "^0.15.3",
100
- "@types/micromatch": "^4.0.9",
101
- "@types/node": "^24.7.0",
102
- "@vitest/ui": "^3.2.4",
103
- "@vue/compiler-sfc": "^3.5.22",
104
- "bumpp": "^10.3.1",
105
- "eslint": "^9.37.0",
106
- "playwright": "^1.56.0",
107
- "react": "^19.2.0",
108
- "react-router": "^7.9.3",
109
- "solid-js": "^1.9.9",
110
- "tsup": "^8.5.0",
111
- "tsx": "^4.20.6",
112
- "typescript": "^5.9.3",
113
- "vite": "^7.1.9",
114
- "vitest": "^3.2.4",
115
- "vue": "^3.5.22",
116
- "vue-router": "^4.5.1"
117
- },
118
- "pnpm": {
119
- "peerDependencyRules": {
120
- "allowedVersions": {
121
- "eslint": "*"
122
- }
123
- },
124
- "overrides": {
125
- "array-flatten": "npm:@nolyfill/array-flatten@^1.0.44",
126
- "is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
127
- "safe-buffer": "npm:@nolyfill/safe-buffer@^1.0.44",
128
- "safer-buffer": "npm:@nolyfill/safer-buffer@^1.0.44",
129
- "side-channel": "npm:@nolyfill/side-channel@^1.0.44"
130
- },
131
- "onlyBuiltDependencies": [
132
- "esbuild"
133
- ]
134
- }
135
- }
1
+ {
2
+ "name": "vite-plugin-pages2",
3
+ "type": "module",
4
+ "version": "0.34.6",
5
+ "packageManager": "pnpm@10.23.0",
6
+ "description": "File system base vue-router plugin for Vite",
7
+ "author": "wuc656 <wuc656@gmail.com>, hannoeru <me@hanlee.co>",
8
+ "license": "MIT",
9
+ "homepage": "https://github.com/wuc656/vite-plugin-pages",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/wuc656/vite-plugin-pages.git"
13
+ },
14
+ "bugs": "https://github.com/wuc656/vite-plugin-pages/issues",
15
+ "keywords": [
16
+ "vite",
17
+ "vue",
18
+ "vue-router",
19
+ "react",
20
+ "react-router",
21
+ "solid-js",
22
+ "@solidjs/router",
23
+ "file-system-based",
24
+ "routing"
25
+ ],
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js",
30
+ "require": "./dist/index.cjs"
31
+ },
32
+ "./client": {
33
+ "types": "./client.d.ts"
34
+ },
35
+ "./client-react": {
36
+ "types": "./client-react.d.ts"
37
+ },
38
+ "./client-solid": {
39
+ "types": "./client-solid.d.ts"
40
+ }
41
+ },
42
+ "main": "dist/index.js",
43
+ "types": "dist/index.d.ts",
44
+ "files": [
45
+ "LICENSE",
46
+ "client-react.d.ts",
47
+ "client-solid.d.ts",
48
+ "client.d.ts",
49
+ "dist"
50
+ ],
51
+ "scripts": {
52
+ "dev": "npm run build -- --watch --ignore-watch examples",
53
+ "build": "tsup",
54
+ "play": "pnpm --filter vue dev",
55
+ "play:react": "pnpm --filter react dev",
56
+ "prepublishOnly": "npm run build",
57
+ "release": "bumpp --commit --tag --push && npm publish",
58
+ "publish:ci": "tsx scripts/publish.ts",
59
+ "test": "vitest",
60
+ "test:e2e": "vitest -c vitest.config.e2e.ts",
61
+ "test:ui": "vitest --ui",
62
+ "lint": "eslint .",
63
+ "lint:fix": "eslint . --fix",
64
+ "type-check": "tsc --noEmit"
65
+ },
66
+ "peerDependencies": {
67
+ "@vue/compiler-sfc": "^2.7.0 || ^3.0.0",
68
+ "vite": "^2.0.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
69
+ },
70
+ "peerDependenciesMeta": {
71
+ "@solidjs/router": {
72
+ "optional": true
73
+ },
74
+ "@vue/compiler-sfc": {
75
+ "optional": true
76
+ },
77
+ "react-router": {
78
+ "optional": true
79
+ },
80
+ "vue-router": {
81
+ "optional": true
82
+ }
83
+ },
84
+ "dependencies": {
85
+ "@types/debug": "^4.1.12",
86
+ "debug": "^4.4.3",
87
+ "dequal": "^2.0.3",
88
+ "extract-comments": "^1.1.0",
89
+ "json5": "^2.2.3",
90
+ "local-pkg": "^1.1.2",
91
+ "micromatch": "^4.0.8",
92
+ "picocolors": "^1.1.1",
93
+ "tinyglobby": "^0.2.15",
94
+ "yaml": "^2.8.1"
95
+ },
96
+ "devDependencies": {
97
+ "@antfu/eslint-config": "^6.2.0",
98
+ "@antfu/utils": "^9.3.0",
99
+ "@solidjs/router": "^0.15.4",
100
+ "@types/micromatch": "^4.0.10",
101
+ "@types/node": "^24.10.1",
102
+ "@vitest/ui": "^4.0.14",
103
+ "@vue/compiler-sfc": "^3.5.25",
104
+ "bumpp": "^10.3.1",
105
+ "eslint": "^9.39.1",
106
+ "playwright": "^1.57.0",
107
+ "react": "^19.2.0",
108
+ "react-router": "^7.9.6",
109
+ "solid-js": "^1.9.10",
110
+ "tsup": "^8.5.1",
111
+ "tsx": "^4.20.6",
112
+ "typescript": "^5.9.3",
113
+ "vite": "^7.2.4",
114
+ "vitest": "^4.0.14",
115
+ "vue": "^3.5.25",
116
+ "vue-router": "^4.6.3"
117
+ },
118
+ "pnpm": {
119
+ "peerDependencyRules": {
120
+ "allowedVersions": {
121
+ "eslint": "*"
122
+ }
123
+ },
124
+ "overrides": {
125
+ "array-flatten": "npm:@nolyfill/array-flatten@^1.0.44",
126
+ "is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
127
+ "safe-buffer": "npm:@nolyfill/safe-buffer@^1.0.44",
128
+ "safer-buffer": "npm:@nolyfill/safer-buffer@^1.0.44",
129
+ "side-channel": "npm:@nolyfill/side-channel@^1.0.44"
130
+ },
131
+ "onlyBuiltDependencies": [
132
+ "esbuild"
133
+ ]
134
+ }
135
+ }