-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.16 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
{
"name": "@spatialnode/ewa-ui",
"version": "0.1.0",
"description": "Spatialnode React component library",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"component-library",
"ewa-ui",
"spatialnode-ui",
"design-system"
],
"author": "Spatialnode",
"license": "ISC",
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@chromatic-com/storybook": "latest",
"@storybook/addon-a11y": "^10.5.7",
"@storybook/addon-docs": "^10.5.7",
"@storybook/addon-mcp": "latest",
"@storybook/addon-themes": "^10.5.7",
"@storybook/addon-vitest": "^10.5.7",
"@storybook/react-vite": "^10.5.7",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitest/browser-playwright": "latest",
"@vitest/coverage-v8": "latest",
"autoprefixer": "^10.5.4",
"playwright": "latest",
"postcss": "^8.5.26",
"publint": "^0.3.23",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"storybook": "^10.5.7",
"tailwindcss": "^4.3.3",
"tsdown": "^0.22.14",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"unrun": "^0.3.1",
"vitest": "latest"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@radix-ui/react-slot": "^1.3.3",
"@tanstack/react-table": "^9.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.29.0",
"radix-ui": "^1.6.7",
"tailwind-merge": "^3.6.0"
}
}