-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.68 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
65
66
67
68
{
"name": "vue-rough-notation",
"version": "1.0.4",
"description": "Vue wrapper for rough-notation, support Vue2 & 3",
"author": "Leecason",
"scripts": {
"demo": "vue-cli-service serve --open",
"demo:build": "vue-cli-service build",
"dev": "rollup -c -w",
"build": "rollup -c"
},
"main": "dist/vue-rough-notation.js",
"module": "dist/vue-rough-notation.esm.js",
"unpkg": "dist/vue-rough-notation.js",
"files": [
"dist/*",
"types/*"
],
"types": "types/index.d.ts",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"not dead"
],
"keywords": [
"vue-rough-notation",
"rough-notation",
"vue"
],
"bugs": {
"url": "https://github.com/Leecason/vue-rough-notation/issues"
},
"homepage": "https://github.com/Leecason/vue-rough-notation#readme",
"repository": {
"type": "git",
"url": "https://github.com/Leecason/vue-rough-notation.git"
},
"license": "MIT",
"dependencies": {
"mitt": "^3.0.0",
"rough-notation": "^0.4.0",
"vue-demi": "latest"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-typescript": "^4.1.2",
"@types/vue": "^2.0.0",
"@vue/cli-service": "^4.5.15",
"rollup": "^2.11.2",
"rollup-plugin-terser": "^6.1.0",
"vue": "^3.2.27"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}