-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.38 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
{
"name": "github-changelog",
"version": "2.0.0",
"description": "Generate a changelog from GitHub pull requests",
"keywords": [
"changelog",
"github"
],
"homepage": "https://github.com/embroider-build/github-changelog#readme",
"bugs": {
"url": "https://github.com/embroider-build/github-changelog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embroider-build/github-changelog.git"
},
"license": "MIT",
"author": "Bo Borgerson <gigabo@gmail.com>",
"main": "index.js",
"bin": {
"github-changelog": "bin/cli.js"
},
"scripts": {
"build": "pnpm clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "pnpm lint --fix",
"lint": "eslint src --ext ts --format stylish",
"prepare": "pnpm build",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "vitest",
"test-ci": "pnpm build && pnpm test",
"watch": "pnpm build -- --watch"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"dependencies": {
"@manypkg/get-packages": "^2.2.0",
"chalk": "^4.0.0",
"cli-highlight": "^2.1.11",
"execa": "^5.0.0",
"hosted-git-info": "^4.0.0",
"make-fetch-happen": "^9.0.0",
"p-map": "^3.0.0",
"progress": "^2.0.0",
"yargs": "^17.1.0"
},
"devDependencies": {
"@types/node": "22.10.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "10.1.0",
"prettier": "2.8.8",
"release-plan": "^0.11.0",
"rimraf": "3.0.2",
"typescript": "5.0.4",
"vitest": "^3.0.4"
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"engines": {
"node": "18.* || 20.* || >= 22"
},
"pnpm": {
"overrides": {
"github-changelog": "link:./"
}
},
"changelog": {
"repo": "embroider-build/github-changelog",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
}
}