-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.73 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
{
"name": "@edison1105/cpr",
"version": "0.0.10",
"packageManager": "[email protected]",
"description": "Check if your PRs are in conflict.",
"author": "Edison1105 <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/edison1105/cpr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/edison1105/cpr.git"
},
"bugs": {
"url": "https://github.com/edison1105/cpr/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"cpr": "bin/cpr.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "esno src/commands/cpr.ts",
"build": "unbuild",
"stub": "unbuild --stub",
"release": "bumpp && npm publish --access=public",
"format": "prettier --write --cache --parser typescript \"**/*.[tj]s?(x)\""
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@octokit/core": "^4.2.0",
"@types/node": "^18.11.18",
"bumpp": "^8.2.1",
"console-table-printer": "^2.11.1",
"eslint": "^8.32.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.12",
"kleur": "^4.1.5",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4",
"unbuild": "^1.1.1",
"vitest": "^0.27.2"
},
"keywords": [
"pr",
"cpr",
"check pr",
"conflict",
"pull",
"request"
]
}