Files
LUNA-Charts/package.json
T
Ninosaurier bb6009d26c build(workspace):
add root command for documentation development

Expose the Astro documentation development server through the root
workspace to simplify the local development workflow. Developers can
now start the documentation site without changing into the docs directory.

Fixes: #12
2026-08-01 23:41:47 +02:00

38 lines
942 B
JSON

{
"name": "LUNA-Charts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs": "pnpm --filter docs run dev",
"lint": "eslint .",
"format": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"test:unit": "pnpm --filter luna-charts test:unit",
"test:component": "docker compose -f docker-compose.test.yaml up --build --abort-on-container-exit --exit-code-from test",
"test": "pnpm test:unit && pnpm test:component"
},
"keywords": [],
"author": "",
"license": "ISC",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.0.0"
},
"packageManager": {
"name": "pnpm",
"version": "11.11.0",
"onFail": "download"
}
},
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"eslint": "^10.6.0",
"prettier": "^3.9.4"
}
}