-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
92 lines (92 loc) · 2.44 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": "vite-plugin-virtual-mpa",
"version": "1.12.1",
"author": "秦旭洋 <[email protected]>",
"license": "MIT",
"description": "Out-of-box MPA plugin for Vite, with html template engine and virtual files support.",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/emosheeep/vite-plugin-virtual-mpa"
},
"bugs": {
"url": "https://github.com/emosheeep/vite-plugin-virtual-mpa/issues"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"README.zh_CN.md"
],
"keywords": [
"vite",
"vite-plugin",
"virtual",
"virtual-html",
"html",
"html-mpa",
"html-template",
"mpa",
"multi",
"multi-page"
],
"scripts": {
"prepare": "simple-git-hooks",
"prepublishOnly": "npm run build",
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint . --fix --ext .js,.ts",
"changeset": "changeset",
"versions": "changeset version"
},
"dependencies": {
"@types/connect-history-api-fallback": "^1.5.4",
"@types/html-minifier-terser": "^7.0.2",
"connect-history-api-fallback": "^2.0.0",
"ejs": "^3.1.10",
"html-minifier-terser": "^7.2.0",
"picocolors": "^1.0.1",
"tsup": "^8.2.4",
"vite": "^5.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@types/ejs": "^3.1.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.27.0",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"vue-eslint-parser": "^9.4.3"
},
"peerDependencies": {
"vite": ">= 2.0.0"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint -e",
"pre-commit": "npx lint-staged && npx tsc --noEmit"
}
}