mirror of
https://github.com/kennethnym/aris.git
synced 2026-04-13 13:21:18 +01:00
- Upgrade typescript from ^5 to ^6 across all packages - Address TS6 breaking changes in tsconfig files: - Add explicit types array (new default is []) - Remove deprecated baseUrl (paths work without it) - Remove redundant esModuleInterop: true - Merge DOM.Iterable into DOM lib - Install @typescript/native-preview for tsgo CLI - Enable tsgo in VS Code settings Co-authored-by: Ona <no-reply@ona.com>
28 lines
546 B
JSON
28 lines
546 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": {
|
|
"@json-render/core": "^0.12.1",
|
|
"@nym.sh/jrx": "^0.2.0",
|
|
"@types/bun": "latest",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260412.1",
|
|
"oxfmt": "^0.24.0",
|
|
"oxlint": "^1.39.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^6"
|
|
}
|
|
}
|