-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "changy",
"version": "0.2.5",
"description": "A simple changelog CLI for user facing changelogs.",
"type": "module",
"main": "/dist/index.mjs",
"module": "/dist/index.mjs",
"types": "/dist/index.d.ts",
"bin": "./bin.mjs",
"scripts": {
"start": "unbuild && node bin.mjs",
"test": "vitest",
"format": "biome format --write",
"lint": "biome check",
"build": "unbuild",
"check": "tsc --noEmit",
"ci:release": "unbuild && changeset publish",
"changeset": "changeset"
},
"files": [
"dist/**/*",
"src",
"package.json",
"package-lock.json",
"README.md",
"tsconfig.json",
"LICENSE",
".prettierrc",
"build.config.ts",
".gitignore",
"bin.mjs"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ieedan/changy"
},
"keywords": [
"changelog",
"date"
],
"author": "Aidan Bleser",
"license": "MIT",
"bugs": {
"url": "https://github.com/ieedan/changy/issues"
},
"homepage": "https://github.com/ieedan/changy/tree/main#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"enquirer": "^2.4.1",
"fs-extra": "^11.2.0",
"luxon": "^3.5.0",
"marked": "^13.0.3",
"marked-terminal": "^7.1.0",
"remark-parse": "^11.0.0",
"rfdc": "^1.4.1",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.7",
"@cspell/eslint-plugin": "^8.13.3",
"@eslint/js": "^9.9.0",
"@types/fs-extra": "^11.0.4",
"@types/luxon": "^3.4.2",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.2.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.1.0",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
}
}