infrastructure-forgejo-ci/package.json
autocommit 59479ffacc deps-upgrade(deps): ⬆️ Update dependencies to latest versions for security and performance improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:10:45 -07:00

72 lines
1.6 KiB
JSON

{
"name": "@lilith/infrastructure-forgejo-ci",
"version": "1.0.0",
"description": "Reusable Forgejo Actions workflows, composite actions, and CI/CD templates for the Lilith ecosystem",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"forgejo-ci": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./config": {
"import": "./dist/config.js",
"types": "./dist/config.d.ts"
}
},
"files": [
"dist",
"templates",
"scripts"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --fix",
"prepublishOnly": "bun run build"
},
"keywords": [
"forgejo",
"actions",
"ci-cd",
"github-actions",
"workflows",
"monorepo",
"pnpm",
"docker",
"deployment"
],
"author": {
"name": "QuinnFTW",
"email": "quinn@ftw.codes"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://git@forge.black.lan:2222/lilith/infrastructure-forgejo-ci.git"
},
"homepage": "http://forge.black.lan/lilith/infrastructure-forgejo-ci#readme",
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}