You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
914 B
35 lines
914 B
{
|
|
"name": "rakit-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"lint": "oxlint --import-plugin --ignore-path=./.oxlintignore -c ./oxlintrc.json",
|
|
"lint:fix": "bun run lint --fix",
|
|
"postinstall": "simple-git-hooks",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"lint-staged": "^15.2.9",
|
|
"oxlint": "^0.9.1",
|
|
"picocolors": "^1.0.1",
|
|
"semver": "^7.6.3",
|
|
"simple-git-hooks": "^2.11.1",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.5.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "bun run lint-staged",
|
|
"commit-msg": "node scripts/verify-commit.js"
|
|
}
|
|
}
|
|
|