-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 910 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "@liuxingyu521/eslint-config-monorepo",
"version": "2.0.0",
"private": true,
"author": "liuxingyu521 <xuj_power@qq.com> (https://github.com/liuxingyu521)",
"type": "module",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint ./test --fix",
"release": "pnpm release:check && pnpm release:version && pnpm release:publish",
"release:check": "pnpm lint:fix",
"release:version": "bumpp package.json packages/*/package.json --execute=\"pnpm changelog\" --all",
"release:publish": "pnpm publish -r --access public",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@liuxingyu521/eslint-config": "workspace:*",
"bumpp": "^9.4.1",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^9.1.1",
"typescript": "^5.4.5"
}
}