Some checks failed
Publish / publish (push) Failing after 0s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/ui-lazy",
|
|
"version": "1.0.2",
|
|
"description": "SOLID/DRY lazy loading utilities for React - defer heavy dependencies, reduce bundle size",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./hooks": "./src/hooks/index.ts",
|
|
"./components": "./src/components/index.ts"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --fix",
|
|
"lint:check": "eslint src",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:watch": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"lazy-loading",
|
|
"code-splitting",
|
|
"performance",
|
|
"bundle-optimization"
|
|
],
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|