60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/dev-publish",
|
|
"version": "1.3.1",
|
|
"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": "tsup",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"publish",
|
|
"dev",
|
|
"verdaccio",
|
|
"workspace",
|
|
"monorepo",
|
|
"lilith"
|
|
],
|
|
"author": "Lilith Vaelynn",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"dotenv": "^16.6.1",
|
|
"fast-glob": "^3.3.2",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.4.0",
|
|
"@types/node": "^20.17.10",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/",
|
|
"access": "public"
|
|
}
|
|
}
|