Files
Rune-Spec/package.json
2026-06-10 09:37:39 +08:00

46 lines
847 B
JSON

{
"name": "@lanyuanxiaoyao/rune",
"version": "0.1.3",
"bin": {
"rune": "./src/cli.ts"
},
"files": [
"src",
"README.md"
],
"type": "module",
"module": "src/cli.ts",
"scripts": {
"prepare": "husky",
"test": "bun test",
"lint": "oxlint",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"check": "oxlint && oxfmt --check .",
"release": "bun run scripts/release.ts"
},
"dependencies": {
"cac": "^7.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0"
},
"peerDependencies": {
"typescript": "^5"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"oxlint",
"oxfmt"
],
"*.{json,md,yaml,yml}": [
"oxfmt"
]
}
}