57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/dev-publish",
|
|
"version": "1.0.0",
|
|
"description": "Fast local build+publish utility for @packages workspace - publishes TypeScript packages with dev versions",
|
|
"type": "module",
|
|
"bin": {
|
|
"dev-publish": "./dist/index.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"PROTOCOL.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest"
|
|
},
|
|
"keywords": [
|
|
"publish",
|
|
"dev",
|
|
"verdaccio",
|
|
"workspace",
|
|
"monorepo",
|
|
"lilith"
|
|
],
|
|
"author": "Lilith Vaelynn",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"fast-glob": "^3.3.2",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "workspace:*",
|
|
"@types/node": "^20.17.10",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/",
|
|
"access": "public"
|
|
}
|
|
}
|