forked from underfin/vite-plugin-vue2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "vite-plugin-vue1",
"version": "0.0.16",
"description": "Vite plugin for Vue1",
"main": "dist/index.js",
"scripts": {
"dev": "tsc -w -p . --incremental --skipLibCheck",
"test": "jest --clearCache && jest --runInBand --forceExit",
"build": "rm -rf dist && cp node_modules/vue-template-compiler/build.js node_modules/vue-template-compiler/index.js && tsc -p . --skipLibCheck",
"release": "bumpp -x 'yarn changelog' --all --push --commit --tag && yarn publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "yarn build"
},
"files": [
"dist"
],
"keywords": [
"vite",
"vue1"
],
"author": "underfin & BevanR",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BevanR/vite-plugin-vue1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/parser": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-transform-typescript": "^7.15.8",
"@rollup/pluginutils": "^4.1.1",
"@vue/component-compiler-utils": "^3.2.2",
"debug": "^4.3.2",
"fs-extra": "^9.1.0",
"hash-sum": "^2.0.0",
"magic-string": "^0.25.7",
"prettier": "^2.4.1",
"querystring": "^0.2.1",
"rollup": "^2.58.0",
"slash": "^3.0.0",
"source-map": "^0.7.3",
"vue-template-es2015-compiler": "^1.9.1"
},
"peerDependencies": {
"vite": "^2.0.0-beta.23",
"vue-template-compiler": "^2.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/puppeteer": "^5.4.4",
"bumpp": "^7.1.1",
"conventional-changelog-cli": "^2.1.1",
"execa": "^4.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"puppeteer": "^10.4.0",
"ts-jest": "^26.5.6",
"typescript": "^4.4.3",
"vite": "^2.6.5",
"vue-template-compiler": "^2.6.14",
"yorkie": "^2.0.0"
}
}