-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "esbuild-plugin-vue-next",
"version": "0.1.4",
"description": "an esbuild plugin for vue 3.x SFC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"format": "prettier --write .",
"build": "tsc -p ."
},
"keywords": [
"esbuild",
"plugin",
"vue"
],
"author": "zhangyu",
"license": "MIT",
"devDependencies": {
"@types/convert-source-map": "^1.5.2",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"esbuild": "^0.13.2",
"jest": "^27.2.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"vue": "^3.2.20",
"@vue/compiler-sfc": "^3.2.20"
},
"dependencies": {
"convert-source-map": "^1.8.0",
"hash-sum": "^2.0.0"
},
"peerDependencies": {
"@vue/compiler-sfc": ">=3.0.0"
}
}