-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.59 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
92
93
94
95
96
{
"name": "carpet-component-library",
"version": "0.1.0",
"author": "Paul Christ",
"files": [
"dist",
"src"
],
"keywords": [
"CARPET",
"vue",
"vue3",
"component",
"library"
],
"type": "module",
"main": "dist/carpet-component-library.umd.cjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/carpet-component-library.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/carpet-component-library.umd.cjs"
}
},
"./style.css": "./dist/style.css"
},
"types": "dist/index.d.ts",
"engines": {
"node": "22.8.0"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"vue": "^3.4.29"
},
"dependencies": {
"@guolao/vue-monaco-editor": "^1.5.4",
"@quasar/extras": "^1.16.12",
"d3": "^7.9.0",
"d3-graphviz": "^5.6.0",
"jsonpath-plus": "^9.0.0",
"pinia": "^2.1.7",
"quasar": "^2.17.1",
"vue": "^3.4.29"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.8.0",
"@rushstack/eslint-patch": "^1.8.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/vue3": "^8.2.9",
"@storybook/vue3-vite": "^8.2.9",
"@tsconfig/node20": "^20.1.4",
"@types/d3": "^7.4.3",
"@types/d3-graphviz": "^2.6.10",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.23.0",
"jsdom": "^24.1.0",
"npm-run-all2": "^6.2.0",
"prettier": "^3.2.5",
"storybook": "^8.2.9",
"storybook-addon-jsdoc-to-mdx": "^1.0.3",
"typescript": "~5.4.0",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.2.1",
"vite-plugin-vue-devtools": "^7.3.1",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.21"
}
}