-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "vite-plugin-multi-pages",
"version": "0.0.14",
"description": "Multi Page for vite",
"keywords": [
"vite-plugin",
"mpa",
"MPA",
"multi-page"
],
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"main": "dist/index.js",
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"stub": "unbuild --stub",
"dev": "pnpm stub",
"build": "pnpm clean:dist && pnpm -F @vft/script ts:common",
"pub": "pnpm build && tsx ../../scripts/build/src/publish.ts --pkg vite-plugin/vite-plugin-multi-pages",
"clean": "pnpm /^clean:/",
"clean:dist": "rimraf dist",
"clean:node_modules": "rimraf node_modules"
},
"files": [
"dist"
],
"author": {
"name": "wfly",
"url": "https://github.com/Miofly",
"email": "[email protected]"
},
"peerDependencies": {
"vite": ">=2.0.0",
"typescript": ">=4.0.0"
},
"dependencies": {
"connect-history-api-fallback": "2.0.0",
"yargs": "17.7.1",
"fast-glob": "3.2.12"
},
"devDependencies": {
"unbuild": "2.0.0",
"@vft/tsconfig": "latest",
"@types/connect-history-api-fallback": "1.3.5",
"@types/yargs": "17.0.22"
},
"homepage": "https://github.com/Miofly/vite-plugin-multi-pages",
"repository": {
"type": "git",
"url": "[email protected]:Miofly/vite-plugin-multi-pages.git"
}
}