-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.82 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.82 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
96
97
{
"name": "@atxp/design-system",
"version": "0.2.2",
"type": "module",
"description": "ATXP Design System - React component library",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "pnpm build:css && tsup --watch",
"build": "tsup && pnpm build:css",
"build:css": "tailwindcss --input ./src/styles/globals.css --output ./dist/styles.css --minify",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "pnpm build"
},
"keywords": [
"react",
"components",
"design-system",
"ui",
"atxp"
],
"author": "ATXP",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atxp-dev/design-system.git"
},
"bugs": {
"url": "https://github.com/atxp-dev/design-system/issues"
},
"homepage": "https://github.com/atxp-dev/design-system#readme",
"sideEffects": false,
"peerDependencies": {
"lucide-react": "^0.562.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"sonner": "^2.0.7"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@storybook/addon-designs": "^11.1.1",
"@storybook/addon-links": "^10.2.0",
"@storybook/react-vite": "^10.2.0",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "10.2.0",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"storybook": "^10.2.0",
"tailwindcss": "^4.1.18",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.0"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.4.0"
},
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
}