-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
{
"name": "vite-plugin-mpx",
"version": "1.0.0-alpha.18",
"description": "Vite plugin of mpx convert to web",
"main": "dist/index.js",
"types": "temp/index.d.ts",
"author": "mater1996 <bxh8640@gmail.com>",
"license": "MIT",
"directories": {
"example": "example"
},
"files": [
"dist",
"temp",
"src"
],
"repository": {
"type": "git",
"url": "git@github.com:mater1996/vite-plugin-mpx.git"
},
"keywords": [
"vite",
"mpx"
],
"scripts": {
"dev": "tsc -p . -w --incremental",
"build": "rimraf dist && npm run build-bundle && npm run build-types",
"build-bundle": "node ./scripts/build.js",
"build-types": "tsc -p . --emitDeclarationOnly --outDir temp",
"lint": "npx eslint --fix . --ext .ts",
"release": "release-it"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@mpxjs/webpack-plugin": "^2.6.102",
"@release-it/conventional-changelog": "^3.3.0",
"@types/debug": "^4.1.7",
"@types/hash-sum": "^1.0.0",
"@types/node": "^16.11.6",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"esbuild": "^0.14.14",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"execa": "^5.1.1",
"release-it": "^14.11.7",
"rollup": "^2.60.2",
"typescript": "^4.3.2",
"vite": "^3.0.0"
},
"dependencies": {
"@mpxjs/webpack-plugin": "^2.6.102",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-replace": "^3.0.0",
"debug": "^4.3.2",
"hash-sum": "^2.0.0",
"json5": "^2.2.0",
"magic-string": "^0.26.1",
"qs": "^6.10.1",
"rollup-plugin-polyfill-node": "^0.8.0",
"slash": "^3.0.0",
"vite-plugin-vue2": "^2.0.0"
},
"peerDependencies": {
"@mpxjs/webpack-plugin": "^2.6.102",
"rollup": "^2.60.2",
"vite": "^3.0.0"
}
}