Some checks failed
Build and Publish / build-and-publish (push) Failing after 44s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"name": "@lilith/routes",
|
|
"version": "1.0.0",
|
|
"description": "Shared route definitions for Lilith Platform",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./patterns": {
|
|
"types": "./dist/patterns/index.d.ts",
|
|
"import": "./dist/patterns/index.js"
|
|
},
|
|
"./paths": {
|
|
"types": "./dist/paths/index.d.ts",
|
|
"import": "./dist/paths/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "bun run build",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"react-router-dom": ">=6.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react-router-dom": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3",
|
|
"tsup": "^8.5.1"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://forge.black.lan/lilith/infrastructure.git",
|
|
"directory": "routes"
|
|
},
|
|
"author": "Lilith Platform",
|
|
"license": "UNLICENSED",
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|