-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.87 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.87 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
98
99
100
101
102
{
"name": "@aolda/ui",
"version": "2.2.0",
"license": "MIT",
"sideEffects": [
"./styles.css"
],
"files": [
"dist",
"styles.css"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./styles.css",
"./tailwind": {
"types": "./dist/tailwind/index.d.ts",
"import": "./dist/tailwind/index.mjs",
"require": "./dist/tailwind/index.js"
},
"./*": {
"types": "./dist/*/index.d.ts",
"import": "./dist/*/index.mjs",
"require": "./dist/*/index.js"
}
},
"scripts": {
"build": "node scripts/build-component-css.js && tsup",
"dev": "node scripts/build-component-css.js && tsup --watch",
"type-check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"icons:build": "node scripts/generate-icons.js",
"prepublishOnly": "pnpm run build",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"changeset": "changeset",
"release:prepare": "pnpm changeset version && pnpm install --no-frozen-lockfile"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"tailwindcss": ">=4.0.0"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.14.0",
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@svgr/core": "^8.1.0",
"@tailwindcss/vite": "^4.1.13",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"storybook": "^8.6.14",
"svgo": "^3.3.2",
"tailwindcss": "^4.0.0",
"tsup": "^8.0.1",
"typescript": "~5.8.3",
"vite": "^6.3.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"pnpm exec eslint --fix --cache",
"pnpm exec prettier --write"
],
"*.{css,md,json,mdx}": "pnpm exec prettier --write"
}
}