-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 6.38 KB
/
Copy pathpackage.json
File metadata and controls
183 lines (183 loc) · 6.38 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "@ruma-kit/source",
"version": "1.0.0-alpha.5",
"private": true,
"description": "A modern, production-ready React UI component library built with TypeScript, Tailwind CSS, and Nx.",
"repository": {
"type": "git",
"url": "git+https://github.com/ruma-ui/ui.git"
},
"license": "MIT",
"author": "Ruma UI",
"scripts": {
"build": "nx run-many -t build && npm run build:registry",
"build:analyze": "cross-env NODE_ENV=analyze nx build ui",
"build:production": "cross-env NODE_ENV=production nx run-many -t build && npm run build:registry",
"build:registry": "npx tsx scripts/build-registry.ts",
"build:ui": "nx build ui",
"build-storybook": "nx build-storybook ui",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status",
"changeset:version": "changeset version",
"clean": "nx reset && rm -rf dist coverage docs/api .nx/cache",
"clean:all": "npm run clean && rm -rf node_modules",
"dev": "nx run-many -t dev --parallel=3",
"dev:ui": "nx dev ui",
"dev:website": "nx dev www",
"docs:api": "typedoc",
"docs:build": "npm run docs:api && npm run storybook:build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:tailwind": "npx -y @laststance/tailwind-suggest-canonical-classes \"ui/**/*.{ts,tsx}\" \"www/**/*.{ts,tsx}\"",
"postinstall": "nx reset",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint -- --fix",
"pack:size": "npm run build:production && cd dist/ui && node -e \"const { execSync } = require('child_process'); const out = execSync('npm pack --dry-run --json', { encoding: 'utf8' }); const info = JSON.parse(out)[0]; console.log('Unpacked size:', info.unpackedSize, 'bytes');\"",
"precommit": "lint-staged",
"prepare": "husky",
"release": "npm run build:production && npm run changeset:publish",
"release:dry": "semantic-release --dry-run",
"release:prerelease": "npm run build:production && npm run changeset:publish --tag",
"release:semantic": "semantic-release",
"release:version": "npm run changeset:version && npm run build:production",
"size": "size-limit",
"size:analyze": "npm run build:analyze",
"storybook": "nx storybook ui",
"storybook:build": "nx build-storybook ui",
"test": "nx run-many -t test",
"test:coverage": "nx test ui --coverage",
"test:ui": "nx test ui",
"test:watch": "nx test ui --watch",
"typecheck": "nx run-many -t typecheck",
"validate": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.{css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.13",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"next": "16.1.7",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "7.9.3",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.8"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-react": "^7.27.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@next/eslint-plugin-next": "^15.5.3",
"@nx/eslint": "23.0.0",
"@nx/eslint-plugin": "23.0.0",
"@nx/jest": "23.0.0",
"@nx/js": "23.0.0",
"@nx/next": "23.0.0",
"@nx/react": "23.0.0",
"@nx/storybook": "23.0.0",
"@nx/vite": "23.0.0",
"@nx/vitest": "23.0.0",
"@nx/web": "23.0.0",
"@nx/workspace": "23.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@size-limit/preset-big-lib": "^11.2.0",
"@storybook/addon-a11y": "^10.5.6",
"@storybook/addon-docs": "10.5.6",
"@storybook/react-vite": "10.5.6",
"@swc-node/core": "^1.14.1",
"@swc-node/register": "~1.11.1",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.23",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "24.7.0",
"@types/prompts": "^2.4.9",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "4.1.9",
"@vitest/ui": "4.1.9",
"autoprefixer": "10.4.21",
"babel-jest": "30.3.0",
"baseline-browser-mapping": "^2.10.38",
"c8": "^10.1.3",
"chromatic": "^13.2.0",
"commander": "^15.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cross-env": "^10.0.0",
"eslint": "^9.36.0",
"eslint-config-next": "16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-storybook": "^10.5.6",
"execa": "^10.0.0",
"husky": "^9.1.7",
"jest": "30.3.0",
"jest-environment-jsdom": "^30.1.2",
"jest-environment-node": "^30.1.2",
"jest-util": "^30.0.5",
"jiti": "2.6.1",
"jsdom": "~27.0.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^16.1.6",
"nx": "23.0.0",
"ora": "^9.4.1",
"postcss": "8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prompts": "^2.4.2",
"rollup-plugin-visualizer": "^6.0.3",
"semantic-release": "^24.2.9",
"size-limit": "^11.2.0",
"storybook": "10.5.6",
"tailwindcss": "4.1.14",
"ts-jest": "^29.4.4",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-missing-exports": "^4.1.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.44.0",
"verdaccio": "6.7.2",
"vite": "8.0.9",
"vite-bundle-analyzer": "^1.2.3",
"vite-plugin-dts": "~4.5.4",
"vitest": "4.1.9",
"zod": "^4.4.3"
},
"nx": {
"includedScripts": []
}
}