Files
arboretum/package.json
Johan LEROY c78571af07
Some checks failed
CI / Build & test (Node 22) (push) Successful in 9m42s
CI / Build & test (Node 24) (push) Successful in 9m41s
CI / Pack & boot smoke (Node 22) (push) Has been cancelled
Release / Publish to Gitea npm registry (push) Successful in 9m37s
release: @johanleroy/git-arboretum 1.0.0 — publication sur le registre Gitea
- renomme le paquet en @johanleroy/git-arboretum (scope routé vers le registre npm Gitea privé)
- embarque @arboretum/shared via bundleDependencies (scripts/vendor-shared.mjs au prepack)
- joint README/LICENSE au tarball (scripts/copy-meta.mjs) + metadata, keywords, publishConfig
- CI pack-smoke en mono-tarball avec assertion bundleDep ; nouveau workflow release.yml (publish sur tag v*)
- version 1.0.0 ; README mis à jour (install scopé + service systemd)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-17 13:53:30 +02:00

26 lines
670 B
JSON

{
"name": "arboretum-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.16"
},
"scripts": {
"build": "npm run build -w @arboretum/shared -w @johanleroy/git-arboretum -w @arboretum/web",
"typecheck": "tsc -b packages/shared packages/server",
"pack": "npm run build && npm pack -w @johanleroy/git-arboretum",
"test": "vitest run",
"dev:server": "npm run dev -w @johanleroy/git-arboretum",
"dev:web": "npm run dev -w @arboretum/web"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}