-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.78 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.78 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
{
"name": "generi",
"version": "2.0.4",
"description": "A Simple CHANGELOG.md Generator",
"repository": {
"type": "git",
"url": "https://github.com/betterwrite/generi"
},
"bugs": {
"url": "https://github.com/betterwrite/generi/issues"
},
"homepage": "https://github.com/betterwrite/generi/",
"author": "Giovane Cardoso",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"main": "dist/index.js",
"files": [
"dist/**/*",
"package.json",
"LICENSE"
],
"keywords": [
"changelog",
"git",
"publish",
"monorepo",
"lerna",
"cli"
],
"scripts": {
"dev": "pnpm build && node .",
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest run --coverage",
"test:dev": "vitest",
"format": "prettier --write src/ tests/",
"prepublishOnly": "pnpm build",
"patch": "pnpm build && node dist/index.js log patch",
"minor": "pnpm build && node dist/index.js log minor",
"major": "pnpm build && node dist/index.js log major",
"run:test": "pnpm build && node dist/index.js test"
},
"bin": {
"generi": "dist/index.js"
},
"dependencies": {
"bumpp": "^10.3.1",
"c12": "^3.3.1",
"consola": "^3.4.2",
"destr": "^2.0.5",
"execa": "^5.1.1",
"fs-extra": "^11.3.2",
"gradient-string": "^3.0.0",
"js-yaml": "^4.1.0",
"pathe": "^2.0.3",
"sade": "^1.8.1",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.0",
"@vitest/coverage-v8": "4.0.6",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.6"
}
}