Files
anomalyco__opentui/package.json
T
Simon Klee d7ce851cbf fmt changes (#856)
swap prettier with oxfmt/oxlint, update CI, and fix the formatting/lint
issues needed for the new checks to pass.
2026-03-23 15:59:52 +01:00

28 lines
1006 B
JSON

{
"name": "@opentui",
"private": true,
"workspaces": [
"packages/*",
"packages/solid/examples"
],
"scripts": {
"build": "cd packages/core && bun run build && cd ../solid && bun run build && cd ../react && bun run build",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:ci": "oxlint . --deny-warnings",
"lint:fix": "oxlint --fix .",
"pre-publish": "bun scripts/pre-publish.ts",
"publish": "bun run pre-publish && bun run publish:core && bun run publish:react && bun run publish:solid",
"publish:core": "cd packages/core && bun run publish",
"publish:react": "cd packages/react && bun run publish",
"publish:solid": "cd packages/solid && bun run publish",
"prepare-release": "bun scripts/prepare-release.ts",
"test": "bun run --filter '@opentui/core' --filter '@opentui/solid' --filter '@opentui/react' --if-present test"
},
"devDependencies": {
"oxfmt": "0.41.0",
"oxlint": "1.56.0"
}
}