-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.45 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
94
95
96
97
98
99
100
101
102
{
"name": "gitarist",
"version": "1.4.1",
"description": "A CLI tool to utilize Octokit",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": "[email protected]:thilllon/gitarist.git",
"homepage": "https://github.com/thilllon/gitarist#readme",
"bugs": {
"url": "https://github.com/thilllon/gitarist/issues"
},
"contributors": [
"thilllon <[email protected]>"
],
"author": {
"name": "thilllon",
"email": "[email protected]",
"url": "https://github.com/thilllon"
},
"funding": [
{
"type": "github",
"url": "http://github.com/thilllon"
},
{
"type": "ko_fi",
"url": "https://ko-fi.com/thilllon"
}
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"bin": {
"gitarist": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install && chmod +x .husky/*",
"typecheck": "tsc --noEmit",
"build": "tsup",
"test": "vitest",
"format": "prettier --write --list-different .",
"lint": "eslint --fix .",
"prerelease": "pnpm format && pnpm lint && pnpm build",
"release": "release-it"
},
"dependencies": {
"@faker-js/faker": "^9.0.1",
"@gitbeaker/requester-utils": "^40.2.1",
"@gitbeaker/rest": "^40.2.1",
"axios": "^1.7.7",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"lodash": "^4.17.21",
"octokit": "^4.0.2",
"open": "^10.1.0",
"parse-git-config": "^3.0.0",
"picocolors": "^1.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.10.0",
"@swc/core": "^1.7.26",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@types/parse-git-config": "^3.0.4",
"commitizen": "^4.3.0",
"commitlint": "^19.5.0",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"git-cz": "^4.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vitest": "^2.1.1"
}
}