-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
64 lines (64 loc) · 1.28 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
{
"name": "esbuild-plugin-vue3",
"version": "0.4.2",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build:clean": "rimraf dist",
"build:ts": "tsc",
"prepare": "npm-run-all --serial --print-label build:*"
},
"author": "pipe01",
"license": "MIT",
"repository": "github:pipe01/esbuild-plugin-vue3",
"dependencies": {
"esbuild": "^0.14.8",
"typescript": "^4.7.4"
},
"keywords": [
"esbuild",
"plugin",
"vue",
"vue3",
"sfc"
],
"peerDependencies": {
"cheerio": "^1.0.0-rc.10",
"html-minifier": "^4.0.0",
"pug": "^3.0.2",
"sass": "^1.35.2",
"vue": "^3.4.15"
},
"peerDependenciesMeta": {
"cheerio": {
"optional": true
},
"html-minifier": {
"optional": true
},
"pug": {
"optional": true
},
"sass": {
"optional": true
}
},
"devDependencies": {
"@babel/types": "^7.16.0",
"@types/cheerio": "^0.22.31",
"@types/html-minifier": "^4.0.1",
"@types/pug": "^2.0.5",
"@types/sass": "^1.43.1",
"cheerio": "^1.0.0-rc.10",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"sass": "^1.35.2"
},
"files": [
"dist/*.js",
"dist/*.d.ts"
]
}