-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.81 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.81 KB
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
{
"name": "@nyaomaru/changelog-bot",
"version": "0.1.11",
"description": "CLI and GitHub Action to auto-update CHANGELOG.md from git history and release notes, optionally using LLMs.",
"type": "module",
"bin": {
"changelog-bot": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"lint": "eslint .",
"start": "node dist/cli.js",
"dev": "ts-node-esm src/cli.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"format": "prettier --write .",
"check:dist": "node scripts/check-dist-alias.mjs",
"prepack": "pnpm build",
"prepare": "lefthook install",
"prepublishOnly": "pnpm build && pnpm run check:dist"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nyaomaru/changelog-bot.git"
},
"bugs": {
"url": "https://github.com/nyaomaru/changelog-bot/issues"
},
"homepage": "https://github.com/nyaomaru/changelog-bot#readme",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"changelog",
"release",
"github-actions",
"cli",
"openai",
"anthropic"
],
"dependencies": {
"is-kit": "^1.1.3",
"octokit": "^4.0.2",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.5.2",
"@types/yargs": "^17.0.33",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"jest": "^29.7.0",
"jiti": "^2.6.1",
"lefthook": "^2.0.13",
"prettier": "3.7.4",
"ts-jest": "29",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.5.4",
"typescript-eslint": "^8.46.1"
}
}