This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "vue-annotator",
"version": "0.13.2",
"description": "Vue Component for drawing annotation (box, etc)",
"homepage": "http://vue-annotator.surge.sh",
"repository": "github:DrSensor/vue-annotator",
"keyword": [
"vue",
"annotation",
"annotator",
"SVG"
],
"main": "dist/index.js",
"module": "dist/index.js",
"style": "style.css",
"unpkg": "umd/index.js",
"jsdelivr": "umd/index.js",
"typings": "index.d.ts",
"files": [
"dist/",
"umd/",
"index.d.ts",
"style.css"
],
"author": "Fahmi Akbar Wildana",
"license": "MIT",
"private": false,
"bugs": "https://github.com/DrSensor/vue-annotator/issues",
"scripts": {
"dev": "poi --config .storybook/poi.config.js --storybook -o",
"build:storybook": "poi build --config .storybook/poi.config.js --storybook",
"build:component": "poi build --config .circleci/poi.config.js src/components/Annotator.vue --library --dist dist",
"build:component:umd": "poi build --config .circleci/poi.config.js src/components/Annotator.vue --library Annotator --dist umd",
"deploy": "surge .storybook/dist"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.0",
"@storybook/addon-centered": "^3.3.0",
"@storybook/addon-knobs": "^3.3.0",
"@storybook/addon-notes": "^3.3.0",
"@storybook/addon-options": "^3.3.0",
"@storybook/vue": "3.3.0",
"babel-plugin-transform-imports": "^1.4.1",
"marked": "^0.3.9",
"poi": "^9.4.3",
"poi-preset-resolve-alias": "^1.0.1",
"poi-preset-storybook": "^0.1.4",
"storybook-addon-vue-info": "^0.1.5",
"storybook-readme": "^3.2.0",
"surge": "^0.19.0"
},
"peerDependencies": {
"svg.js": "^2.6.4"
},
"dependencies": {
"interactjs": "^1.3.3",
"svg.draw.js": "^2.0.3",
"svg.select.js": "^2.1.2"
}
}