-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 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
79
80
81
82
{
"name": "@labcatr/labcommitr",
"version": "0.6.0",
"description": "Labcommitr is a solution for building standardized git commits, hassle-free!",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"build:prod": "npx tsc && pnpm run clean:maps",
"clean:maps": "node scripts/clean-maps.js",
"format": "pnpm run format:code",
"format:ci": "pnpm run format:code",
"format:code": "prettier -w \"**/*\" --ignore-unknown --cache",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format",
"dev:cli": "node dist/index-dev.js",
"prepublishOnly": "pnpm run build:prod"
},
"type": "module",
"bin": {
"labcommitr": "./dist/index.js",
"lab": "./dist/index.js"
},
"keywords": [
"git",
"commits",
"standardized",
"changelog",
"cli",
"npmtool"
],
"repository": {
"type": "git",
"url": "git+https://github.com/labcatr/labcommitr.git"
},
"homepage": "https://github.com/labcatr/labcommitr#readme",
"author": "Trevor Fox",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^24.3.3",
"boxen": "^8.0.1",
"commander": "^14.0.2",
"consola": "^3.4.2",
"cosmiconfig": "^9.0.0",
"js-yaml": "^4.1.0",
"magicast": "^0.3.5",
"picocolors": "^1.1.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"ufo": "^1.6.1"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/cli/program.js",
"dist/cli/program.d.ts",
"dist/cli/commands/commit",
"dist/cli/commands/commit.js",
"dist/cli/commands/commit.d.ts",
"dist/cli/commands/config.js",
"dist/cli/commands/config.d.ts",
"dist/cli/commands/init",
"dist/cli/commands/preview",
"dist/cli/commands/revert",
"dist/cli/commands/shared",
"dist/cli/ui",
"dist/cli/utils",
"dist/lib",
"README.md",
"CHANGELOG.md",
"TESTING.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9"
}
}