-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.49 KB
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
{
"name": "vmini-build",
"version": "0.5.0",
"description": "A vue syntax compiler and cli for vue-mini",
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"vmini": "bin/vmini.js"
},
"files": [
"dist",
"types",
"bin"
],
"author": "Ken Ho <b2nil>",
"license": "MIT",
"homepage": "https://github.com/b2nil/vminiBuild",
"repository": {
"type": "git",
"url": "git@github.com:b2nil/vminiBuild.git"
},
"scripts": {
"dev": "esbuild src/index.ts --outfile=dist/index.js --format=cjs --platform=node --tree-shaking=true --external:esbuild --external:url --external:pug --external:postcss-pxtransform --external:postcss-url --external:@vue/* --bundle",
"build": "yarn dev --minify",
"plugin": "esbuild src/plugins/index.ts --outfile=tests/plugin.js --format=cjs --platform=node --tree-shaking=true --external:esbuild --external:url --external:pug --external:postcss-pxtransform --external:postcss-url --external:@vue/* --bundle",
"test": "yarn plugin && jest"
},
"peerDependencies": {
"@vue/compiler-sfc": "^3.2.31",
"esbuild": "^0.14.21",
"postcss-pxtransform": "^3.4.2",
"postcss-url": "^10.1.3"
},
"dependencies": {
"cac": "^6.7.12"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@vue/compiler-sfc": "^3.2.31",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"esbuild": "^0.14.22",
"esbuild-jest": "^0.5.0",
"jest": "^27.5.1",
"postcss-modules": "^4.3.0"
}
}