-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.37 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
{
"name": "@surfnet/sds-ng",
"private": false,
"version": "0.0.3",
"type": "module",
"description": "SDS-NG — React component library built on shadcn",
"keywords": [
"design-system",
"react",
"shadcn",
"tailwindcss",
"components"
],
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
},
"./styles.css": {
"import": "./dist/index.css",
"types": "./dist/types/styles.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json",
"build:js": "vite build",
"build:types": "tsc -p tsconfig.build.json",
"lint": "eslint ./src",
"preview": "vite preview",
"tokens:sync": "node scripts/build-tokens.mjs"
},
"peerDependencies": {
"@tanstack/react-table": "^8.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"tailwindcss": "^4.0.0"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@fontsource-variable/geist-mono": "^5.2.8",
"@fontsource-variable/source-sans-3": "^5.2.9",
"@tabler/icons-react": "^3.44.0",
"@tanstack/react-table": "^8.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"next-themes": "^0.4.6",
"radix-ui": "^1.5.0",
"react-day-picker": "^10.0.1",
"react-resizable-panels": "^4.11.2",
"recharts": "3.8.0",
"shadcn": "^4.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^24.13.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"dotenv": "^17.4.2",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"style-dictionary": "^5.4.4",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12"
}
}