-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "@vitejs/plugin-vue2",
"version": "2.3.1",
"license": "MIT",
"author": "Evan You",
"packageManager": "[email protected]",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild && esno scripts/patchCJS.ts",
"test": "vitest run",
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"engines": {
"node": "^14.18.0 || >= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-vue2.git",
"directory": "packages/plugin-vue"
},
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-vue2/issues"
},
"homepage": "https://github.com/vitejs/vite-plugin-vue2/#readme",
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0",
"vue": "^2.7.0-0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"conventional-changelog-cli": "^2.2.2",
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"esno": "^0.16.3",
"execa": "^4.1.0",
"fs-extra": "^10.1.0",
"hash-sum": "^2.0.0",
"minimist": "^1.2.6",
"picocolors": "^1.0.0",
"prettier": "^2.7.1",
"puppeteer": "^14.4.0",
"rollup": "^2.75.6",
"semver": "^7.3.7",
"slash": "^3.0.0",
"source-map": "^0.6.1",
"unbuild": "^0.7.4",
"vite": "^3.0.0",
"vitest": "^0.15.1",
"vue": "^2.7.0-beta.8"
}
}