47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@egg/tools",
|
|
"version": "1.0.0",
|
|
"description": "Tools for Egg projects",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "npm run build -ws",
|
|
"lint": "eslint --fix ./packages",
|
|
"prepare": "husky",
|
|
"prettier": "prettier --write ./packages"
|
|
},
|
|
"author": "RainSun <zhaoyingbo@live.cn>",
|
|
"license": "ISC",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"lint-staged": {
|
|
"packages/*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.4.0",
|
|
"@commitlint/config-conventional": "19.2.2",
|
|
"@eslint/js": "9.9.0",
|
|
"@lerna/conventional-commits": "6.4.1",
|
|
"@types/lodash": "^4.17.10",
|
|
"bun-types": "^1.2.5",
|
|
"eslint": "9.9.0",
|
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
"globals": "15.9.0",
|
|
"husky": "9.1.4",
|
|
"lerna": "8.1.8",
|
|
"lint-staged": "15.2.9",
|
|
"prettier": "3.3.3",
|
|
"typescript": "5.5.4",
|
|
"typescript-eslint": "8.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/rest": "^41.2.0",
|
|
"lodash": "^4.17.21",
|
|
"winston": "3.14.2"
|
|
}
|
|
}
|