-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.52 KB
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
{
"name": "@codebar-ag/storybook",
"version": "1.5.0",
"description": "codebar-ag DocuHub — shared Vue 3 + Tailwind v4 design-system atoms and tokens, documented in Storybook.",
"license": "MIT",
"author": "codebar Solutions AG",
"type": "module",
"files": [
"dist"
],
"main": "./dist/flows.js",
"module": "./dist/flows.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/flows.js"
},
"./tokens.css": "./dist/tokens.css",
"./style.css": "./dist/flows.css"
},
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "vite build && npm run build:tokens",
"build:tokens": "node -e \"require('node:fs').copyFileSync('src/tokens.css','dist/tokens.css')\"",
"build-storybook": "storybook build",
"lint": "eslint \"src/**/*.{ts,vue}\"",
"typecheck": "vue-tsc --noEmit",
"test": "playwright test",
"test:ci": "playwright test"
},
"dependencies": {
"tailwind-merge": "^3.0.0"
},
"peerDependencies": {
"tailwindcss": "^4.0.0",
"vue": "^3.5.0"
},
"peerDependenciesMeta": {
"apexcharts": {
"optional": true
},
"@codemirror/state": {
"optional": true
},
"@codemirror/view": {
"optional": true
},
"@codemirror/lang-json": {
"optional": true
},
"@codemirror/lang-markdown": {
"optional": true
}
},
"devDependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.7.0",
"@codemirror/view": "^6.43.4",
"@playwright/test": "^1.48.0",
"@storybook/addon-a11y": "^9.1.20",
"@storybook/addon-docs": "^9.1.20",
"@storybook/vue3-vite": "^9.0.0",
"@tailwindcss/vite": "^4.0.0",
"@vitejs/plugin-vue": "^6.0.0",
"apexcharts": "^4.5.0",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.0.0",
"http-server": "^14.1.1",
"storybook": "^9.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.0.0",
"vue": "^3.5.0",
"vue-tsc": "^2.1.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebar-ag/storybook.docuhub.app.git"
},
"homepage": "https://github.com/codebar-ag/storybook.docuhub.app#readme",
"bugs": {
"url": "https://github.com/codebar-ag/storybook.docuhub.app/issues"
}
}