48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "egg-tools",
|
|
"version": "1.0.0",
|
|
"description": "Tools for Egg projects, including netTool and logger",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint --fix ./src",
|
|
"prepare": "husky",
|
|
"prettier": "prettier --write ./src"
|
|
},
|
|
"keywords": [
|
|
"egg",
|
|
"tools",
|
|
"logger",
|
|
"netTool"
|
|
],
|
|
"author": "RainSun <zhaoyingbo@live.cn>",
|
|
"license": "ISC",
|
|
"lint-staged": {
|
|
"src/*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.4.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@eslint/js": "^9.9.0",
|
|
"@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",
|
|
"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"
|
|
}
|
|
}
|