package.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
{
"name": "kitten",
"module": "src/index.ts",
"author": {
"name": "apr",
"email": "apr@vt3e.cat",
"url": "https://vt3e.cat/"
},
"license": "EUPL-1.2",
"type": "module",
"workspaces": [
"pkgs/*"
],
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"fmt": "bunx oxfmt fmt src tests",
"lint": "bunx oxlint lint src tests"
}
}
|