-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "changelog-generator",
"private": true,
"version": "0.0.0",
"type": "module",
"bin": {
"changelog-generator": "build/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x build/index.js",
"entry:new": "tsx src/index.ts entry-new",
"compile:json": "tsx src/index.ts compile-json",
"compile:rss": "tsx src/index.ts compile-rss",
"preview": "tsx src/index.ts preview",
"publish": "tsx src/index.ts publish",
"build:data": "pnpm run -s compile:json",
"build:rss": "pnpm run -s compile:rss"
},
"dependencies": {
"dotenv": "^17.2.3",
"debug": "^4.3.6",
"find-up": "^8.0.0",
"js-yaml": "^4.1.1",
"octokit": "^5.0.5",
"@gleanwork/api-client": "^0.13.0",
"commander": "^14.0.2",
"inquirer": "^12.9.6",
"slugify": "^1.6.6",
"chalk": "^5.6.2",
"marked": "^16.4.1",
"gray-matter": "^4.0.3",
"feed": "^5.2.0"
},
"devDependencies": {
"@octokit/types": "^16.0.0",
"@types/debug": "^4.1.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.10",
"@types/inquirer": "^9.0.7",
"@types/marked": "^6.0.0",
"typescript": "~5.9.3",
"tsx": "^4.21.0"
}
}