ui-dnd/package.json
autocommit 2669050200 chore: initial package split from monorepo
Package: @lilith/ui-dnd
Split from: lilith/ui.git or lilith/build.git
Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
2026-04-20 01:11:41 -07:00

58 lines
1.5 KiB
JSON

{
"name": "@lilith/ui-dnd",
"version": "1.1.5",
"description": "Drag and drop components for React with grid and list support",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test -c playwright-ct.config.ts",
"test:e2e:ui": "playwright test -c playwright-ct.config.ts --ui"
},
"dependencies": {
"@lilith/ui-zname": "^1.2.4",
"@lilith/ui-styled-components": "^6.3.9"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.57.0",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"framer-motion": "^12.26.2",
"jsdom": "^26.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"framer-motion": "^11.0.0 || ^12.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"styled-components": "^6.0.0"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}