Files
LUNA-Charts/package.json
T
Ninosaurier 9e5d8ae075
CI / lint-and-format (push) Successful in 38s
CI / changeset-check (push) Successful in 31s
CI / unit-tests (push) Successful in 42s
CI / component-tests (push) Successful in 30s
CI / lint-and-format (pull_request) Successful in 32s
CI / changeset-check (pull_request) Successful in 29s
CI / unit-tests (pull_request) Successful in 41s
CI / component-tests (pull_request) Successful in 29s
build(scripts): add root-level pnpm run storybook script
Adds a storybook script to the root package.json that filters into
the luna-charts package, so Storybook can be launched directly from
the repository root instead of requiring a manual cd into
packages/luna-charts. Updates README.md to document the new command
as part of the standard developer workflow.

Closes #11.
2026-08-12 11:56:59 +02:00

44 lines
1.2 KiB
JSON

{
"name": "LUNA-Charts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs": "pnpm --filter docs run dev",
"lint": "pnpm --filter luna-charts run lint",
"format": "prettier --write .",
"format:check": "pnpm --filter luna-charts run format:check",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"storybook": "pnpm --filter luna-charts run storybook",
"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/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "10.5.0",
"prettier": "^3.9.4",
"typescript-eslint": "^8.65.0"
}
}