This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
102 lines (102 loc) · 3.16 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
93
94
95
96
97
98
99
100
101
102
{
"name": "vite-plugin-vue2",
"version": "2.0.3",
"packageManager": "[email protected]",
"description": "Vite plugin for Vue2",
"keywords": [
"vite",
"vue2"
],
"license": "MIT",
"author": "underfin",
"repository": {
"type": "git",
"url": "git+https://github.com/underfin/vite-plugin-vue2"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc -w -p . --incremental --skipLibCheck",
"play": "npm -C playground run dev",
"test": "jest --clearCache && jest --runInBand --forceExit",
"build": "rm -rf dist && tsc -p . --skipLibCheck",
"release": "bumpp -x 'npm run changelog' --all --push --commit --tag && npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"bugs": {
"url": "https://github.com/underfin/vite-plugin-vue2/issues"
},
"homepage": "https://github.com/underfin/vite-plugin-vue2/tree/master/#readme",
"gitHooks": {
"pre-commit": "lint-staged"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0",
"vue-template-compiler": "^2.2.0"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/parser": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-arrow-functions": "^7.16.7",
"@babel/plugin-transform-block-scoping": "^7.16.7",
"@babel/plugin-transform-computed-properties": "^7.16.7",
"@babel/plugin-transform-destructuring": "^7.17.7",
"@babel/plugin-transform-parameters": "^7.16.7",
"@babel/plugin-transform-spread": "^7.16.7",
"@babel/plugin-transform-typescript": "^7.16.8",
"@rollup/pluginutils": "^4.2.1",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/component-compiler-utils": "^3.3.0",
"consolidate": "^0.16.0",
"debug": "^4.3.4",
"fs-extra": "^10.1.0",
"hash-sum": "^2.0.0",
"magic-string": "^0.26.1",
"prettier": "^2.6.2",
"querystring": "^0.2.1",
"rollup": "^2.70.2",
"slash": "^3.0.0",
"source-map": "^0.7.3",
"vue-template-babel-compiler": "^1.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.7",
"@types/babel__core": "^7.1.20",
"@types/consolidate": "^0.14.1",
"@types/debug": "^4.1.7",
"@types/estree": "^0.0.51",
"@types/fs-extra": "^9.0.13",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/puppeteer": "^5.4.5",
"bumpp": "^7.1.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.14.0",
"execa": "^5.1.1",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"puppeteer": "^13.6.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vue-template-compiler": "^2.6.14",
"yorkie": "^2.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}