-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·49 lines (49 loc) · 1 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
{
"name": "@techlestial/gitlestial",
"version": "2.0.0",
"description": "Gitlestial — git productivity CLI with changelog and conventional commit helpers",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"gitlestial": "./bin/gitlestial"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techlestial/gitlestial.git"
},
"homepage": "https://gitlestial.vercel.app",
"keywords": [
"git",
"gitlestial",
"changelog",
"conventional-commits",
"cli"
],
"author": "m3yevn",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vitest": "^4.1.9"
}
}