mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 00:51:20 +00:00
Rename all references across the codebase: package names, imports, source IDs, directory names, docs, and configs. Co-authored-by: Ona <no-reply@ona.com>
25 lines
428 B
JSON
25 lines
428 B
JSON
{
|
|
"name": "aelis",
|
|
"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"
|
|
}
|
|
}
|