-
Notifications
You must be signed in to change notification settings - Fork 826
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "@vscode-bicep-ui/components",
"private": true,
"version": "0.0.0",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"d3-drag": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"jotai": "^2.19.0",
"jotai-scope": "^0.10.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@storybook/addon-docs": "^10.3.4",
"@storybook/addon-links": "^10.3.4",
"@storybook/addon-themes": "^10.3.4",
"@storybook/react-vite": "^10.3.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/d3-drag": "^3.0.7",
"@types/d3-selection": "^3.0.10",
"@types/d3-transition": "^3.0.8",
"@types/d3-zoom": "^3.0.8",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vscode/codicons": "^0.0.45",
"eslint-plugin-storybook": "^10.3.1",
"happy-dom": "^20.8.9",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^10.3.4",
"styled-components": "^6.3.11",
"vite": "^7.3.2",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-lib-inject-css": "^2.2.1",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@react-hook/resize-observer": "^2.0.2",
"motion": "^12.38.0"
}
}