-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
91 lines (91 loc) · 2.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vue-diagrams",
"title": "An easy to use diagram editor component",
"description": "Diagram component for vue.js, inspired by react-diagrams",
"type": "module",
"version": "1.0.1",
"license": "MIT",
"main": "dist/vue-diagrams.js",
"files": [
"src",
"dist/style.css"
],
"author": "Gwenael Pluchon",
"repository": {
"type": "git",
"url": "https://github.com/gwenaelp/vue-diagrams.git"
},
"bugs": {
"url": "https://github.com/gwenaelp/vue-diagrams/issues"
},
"examples": [
"images/example2.png",
"images/example3.png"
],
"homepage": "https://github.com/gwenaelp/vue-diagrams#readme",
"keywords": [
"vue",
"vue-component",
"vue-library"
],
"vueVersions": {
"2": "https://github.com/gwenaelp/vue-diagrams/tree/vue2",
"3": "https://github.com/gwenaelp/vue-diagrams"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"story:dev": "histoire dev",
"story:build": "histoire build",
"doc:build": "cd doc && yarn && yarn generate && rm ./dist -Rf && mkdir ./dist && mv .output/public/* ./dist && touch dist/.nojekyll && cd .. && yarn story:build",
"test": "vitest",
"type-check": "vue-tsc --noEmit -p tsconfig.json",
"typedoc": "typedoc --options typedoc.json",
"coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/test-runner": "^0.21.0",
"@storybook/vue3": "^8.4.7",
"@storybook/vue3-vite": "^8.4.7",
"@vitest/coverage-istanbul": "^0.34.6",
"@vue/test-utils": "^2.4.2",
"eslint-plugin-storybook": "^0.11.1",
"histoire": "^0.17.17",
"jsdom": "^23.0.0",
"storybook": "^8.4.7",
"vitest": "^0.34.6",
"vue-loader": "^17.0.1",
"vue-svg-pan-zoom": "^2.1.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/preset-env": "7.12.13",
"@histoire/plugin-vue": "^0.17.17",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/compiler-sfc": "^3.3.4",
"@vue/tsconfig": "^0.4.0",
"draggable-vue-directive": "^1.1.0",
"svg-pan-zoom": "^3.6.1",
"tiny-emitter": "^2.1.0",
"typedoc-plugin-vue": "^1.1.0",
"typescript": "^5.2.2",
"uuid": "^10.0.0",
"vite": "^5.0.2",
"vite-plugin-dts": "^4.4.0",
"vue": "^3.3.4",
"vue-tsc": "^2.2.0",
"webpack": "^5.76.0"
}
}