-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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": "vue-class-composition",
"version": "0.0.12",
"main": "lib/vue-class-composition.js",
"module": "esm/vue-class-composition.js",
"types": "esm/index.d.ts",
"repository": "[email protected]:shayeLee/vue-class-composition.git",
"author": "shayeLee <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib esm umd",
"start": "yarn run clean && rollup --sourcemap -c rollup.config.js --watch",
"build": "yarn run clean && rollup -c rollup.config.js"
},
"devDependencies": {
"cz-conventional-changelog": "^3.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.15.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.5"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"files": [
"lib",
"esm",
"umd",
"package.json",
"README.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"vue": "^2.6.11"
}
}