forked from hunghg255/changeloggithub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.8 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
{
"name": "changeloggithub",
"type": "module",
"version": "0.0.33",
"description": "Generate changelog for GitHub.",
"license": "MIT",
"homepage": "https://github.com/hunghg255/changeloggithub#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/changeloggithub.git"
},
"bugs": "https://github.com/hunghg255/changeloggithub/issues",
"keywords": [
"github",
"release",
"releases",
"conventional",
"changelog",
"log"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./cli.mjs",
"files": [
"dist",
"*.mjs"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest",
"lint": "eslint .",
"start": "npm run dev && node cli.mjs --all true",
"typecheck": "tsc --noEmit",
"release": "bumpp -r && npx changeloggithub@latest --all true && git add CHANGELOG.md && git commit -m 'chore: update changelog' && git push"
},
"dependencies": {
"@antfu/utils": "^0.7.6",
"c12": "^1.4.2",
"cac": "^6.7.14",
"consola": "^2.15.3",
"convert-gitmoji": "0.1.3",
"execa": "^7.2.0",
"kolorist": "^1.8.0",
"node-fetch-native": "^0.1.8",
"ofetch": "^1.3.3",
"pkg-types": "^0.3.6",
"scule": "^0.3.2",
"semver": "^7.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@types/node": "^18.17.14",
"@types/semver": "^7.5.1",
"bumpp": "^9.2.0",
"eslint": "^8.48.0",
"esno": "^0.16.3",
"typescript": "^5.2.2",
"unbuild": "^1.2.1",
"vitest": "^0.32.4"
}
}