egg_tools/package.json
zhaoyingbo 07663cb9b3
Some checks failed
/ release (push) Failing after 55s
chore: 移除无用的 "git add" 命令
2024-08-19 01:52:46 +00:00

50 lines
1.2 KiB
JSON

{
"name": "@egg/tools",
"version": "1.0.5",
"description": "Tools for Egg projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build -ws",
"publish": "npm run publish -ws",
"lint": "eslint --fix ./packages",
"prepare": "husky",
"prettier": "prettier --write ./packages"
},
"keywords": [
"egg",
"tools"
],
"author": "RainSun <zhaoyingbo@live.cn>",
"license": "ISC",
"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/node": "^22.4.0",
"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": {
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
}
}