-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.39 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
{
"name": "relnotes",
"version": "0.1.0",
"description": "Generate beautiful changelogs and GitHub release notes from your conventional commits.",
"keywords": [
"changelog",
"conventional-commits",
"release",
"release-notes",
"git",
"cli",
"github",
"semver"
],
"homepage": "https://github.com/ATOM00blue/relnotes#readme",
"bugs": {
"url": "https://github.com/ATOM00blue/relnotes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ATOM00blue/relnotes.git"
},
"license": "MIT",
"author": "ATOM00blue",
"type": "module",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js",
"require": "./dist/lib.cjs"
}
},
"main": "./dist/lib.cjs",
"module": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"bin": {
"relnotes": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.1.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"vitest": "^3.2.4"
}
}