forked from baiwusanyu-c/pr-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.18 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "pr-checker",
"description": "🌷 Detect and update your Pull Requests in batches",
"private": false,
"type": "module",
"version": "1.1.1",
"packageManager": "[email protected]",
"keywords": [
"github",
"react",
"cli",
"pr",
"vuejs",
"vue",
"pull-request",
"pull-requests",
"vue3"
],
"license": "MIT",
"author": "https://github.com/baiwusanyu-c",
"homepage": "https://github.com/baiwusanyu-c/pr-checker",
"repository": "https://github.com/baiwusanyu-c/pr-checker",
"bugs": "https://github.com/baiwusanyu-c/pr-checker/issues",
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.cjs",
"import": "./index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./*",
"./index.d.ts"
]
}
},
"bin": {
"pr-checker": "bin/index.js"
},
"scripts": {
"init": "pnpm i",
"lint:fix": "eslint --fix ./ --ext .vue,.js,.ts,.jsx,.tsx,.json ",
"dev": "pnpm run --filter @pr-checker/play play",
"build": "pnpm run --filter @pr-checker/build build",
"prepublishOnly": "pnpm run build",
"release": "bumpp package.json --commit --push --tag",
"publish": "pnpm run release && pnpm run prepublishOnly && cd dist && pnpm run publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "npx simple-git-hooks",
"clean": "rimraf dist",
"test": "vitest",
"test:update": "vitest -u",
"test:coverage": "vitest --coverage"
},
"peerDependencies": {
"@octokit/core": "^4.2.0",
"cac": "^6.7.14",
"chalk": "^5.2.0",
"console-table-printer": "^2.11.1",
"fs-extra": "^10.0.1",
"ora": "^6.1.2",
"prompts": "^2.4.2"
},
"dependencies": {
"@octokit/core": "^4.2.0",
"cac": "^6.7.14",
"chalk": "^5.2.0",
"console-table-printer": "^2.11.1",
"fs-extra": "^10.0.1",
"ora": "^6.1.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@baiwusanyu/eslint-config": "^1.0.10",
"@pr-checker/build": "workspace:*",
"@pr-checker/entry": "workspace:*",
"@pr-checker/play": "workspace:*",
"@pr-checker/utils": "workspace:*",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^11.0.1",
"@types/gulp": "^4.0.10",
"@types/node": "^18.0.0",
"@types/prompts": "^2.4.2",
"@vitest/coverage-c8": "^0.23.4",
"@vitest/ui": "^0.23.4",
"bumpp": "^8.2.1",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "8.32.0",
"esno": "^0.16.3",
"gulp": "^4.0.2",
"jsdom": "^20.0.0",
"lint-staged": "^13.1.1",
"rimraf": "^4.1.0",
"rollup": "^3.10.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-typescript2": "^0.34.1",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "4.9.4",
"vitest": "^0.23.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node vertify-commit.js"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": [
"eslint ./ --fix"
]
},
"eslintConfig": {
"extends": [
"@baiwusanyu"
]
}
}