-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "esbuild-plugin-vue-iii",
"version": "0.5.0",
"description": "a esbuild plugin for vue 3 SFC files.",
"main": "dist/src/index.js",
"scripts": {
"setup-submodule": "git submodule init && git submodule update && node -e 'console.log(\"/packages/plugin-vue/src/\\n/packages/playground/vue/\\n/LICENSE\")' > .git/modules/vite/info/sparse-checkout && cd vite && git config core.sparsecheckout true && git read-tree -mu HEAD",
"build": "tsc -P ./src/tsconfig.json",
"postbuild": " cp -p ./vite/LICENSE ./dist/vite",
"test": "jest test/",
"serve:iife": "serve test/iife/",
"serve:esm": "serve test/esm/",
"cov": "jest test/ --coverage"
},
"keywords": [
"esbuild",
"plugin",
"vue",
"vue3",
"single file components",
"SFC"
],
"author": "kena0ki",
"repository": {
"type": "git",
"url": "git+https://github.com/kena0ki/esbuild-plugin-vue-iii.git"
},
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@babel/types": "7.11.0",
"@tsconfig/node12": "^1.0.7",
"@types/estree": "^0.0.45",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"esbuild": "^0.12.27",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"lodash-es": "^4.17.21",
"rollup": "^2.38.5",
"serve": "^11.3.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4",
"vite": "^2.5.7"
},
"peerDependencies": {
"esbuild": "0.x"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^4.22.1",
"@vue/compiler-sfc": "^3.2.6",
"querystring": "^0.2.1",
"source-map": "^0.6.1"
}
}