Files
aris/package.json
kenneth 9801925ea0 Add test script and CI workflow
- Add top-level test script that runs tests across all workspaces
- Add GitHub Actions workflow to run tests on PRs and merges to master

Co-authored-by: Ona <no-reply@ona.com>
2026-01-16 23:51:05 +00:00

25 lines
427 B
JSON

{
"name": "aris",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"type": "module",
"scripts": {
"test": "bun run --filter '*' test",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check ."
},
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0"
},
"peerDependencies": {
"typescript": "^5"
}
}