-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.83 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.83 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
74
75
76
77
78
{
"name": "changelogithub",
"type": "module",
"version": "14.0.0",
"packageManager": "[email protected]",
"description": "Generate changelog for GitHub.",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/changelogithub#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/changelogithub.git"
},
"bugs": "https://github.com/antfu/changelogithub/issues",
"keywords": [
"github",
"release",
"releases",
"conventional",
"changelog",
"log"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./cli.mjs",
"files": [
"*.mjs",
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp",
"start": "nr dev && node cli.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ansis": "^4.2.0",
"c12": "^3.3.2",
"cac": "^6.7.14",
"changelogen": "0.5.7",
"convert-gitmoji": "^0.1.5",
"execa": "^9.6.0",
"ofetch": "^1.5.1",
"semver": "^7.7.3",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@antfu/utils": "^9.3.0",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/semver": "^7.7.1",
"bumpp": "^10.3.1",
"eslint": "^9.39.1",
"fs-extra": "^11.3.2",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.13"
}
}