mirror of
https://github.com/nexu-io/open-design.git
synced 2026-07-07 06:34:10 +08:00
* refactor(web): standardize simple dialog shell structure Generated-By: looper 0.9.8 (runner=worker, agent=opencode) * fix(web): preserve sketch text modal drafts Generated-By: looper 0.9.8 (runner=fixer, agent=opencode) * refactor(components): share dialog primitive * refactor(web): share more low-risk dialogs * fix(components): let custom dialog panels opt out of modal chrome Generated-By: looper 0.9.9 (runner=fixer, agent=opencode) * fix(components): drop dialog chrome on opt-out panels Generated-By: looper 0.9.9 (runner=fixer, agent=opencode) * fix(web): keep replacement confirm dialog custom chrome Generated-By: looper 0.9.9 (runner=fixer, agent=opencode) * fix(components): preserve custom dialog backdrop chrome Generated-By: looper 0.9.9 (runner=fixer, agent=opencode) * fix(components): localize dialog tests and keyframes Generated-By: looper 0.9.9 (runner=fixer, agent=opencode) * fix(nix): refresh daemon pnpm deps hash Generated-By: looper 0.9.9 (runner=fixer, agent=opencode) * refactor(components): add dialog section primitives * fix(components): preserve dialog variant sizing Generated-By: looper 0.9.9 (runner=fixer, agent=opencode)
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "@open-design/components",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Shared Open Design React UI primitives.",
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src/styles.css"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"development": "./src/index.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./styles.css": "./src/styles.css"
|
|
},
|
|
"scripts": {
|
|
"build": "tsx ./esbuild.config.ts && tsc -p tsconfig.json --emitDeclarationOnly",
|
|
"test": "vitest run -c vitest.config.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "16.3.2",
|
|
"@types/react": "18.3.28",
|
|
"esbuild": "0.28.0",
|
|
"jsdom": "29.1.1",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"tsx": "4.22.3",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.1.6"
|
|
},
|
|
"engines": {
|
|
"node": "~24"
|
|
}
|
|
}
|