-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "abast",
"version": "0.0.1",
"private": true,
"description": "Bot for several things",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier .",
"compile": "bun build src/index.ts --minify --compile --outfile bin/abast"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"bun-types": "^1.0.3",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@commander-js/extra-typings": "^12.0.0",
"@gitbeaker/core": "^39.15.0",
"@gitbeaker/rest": "^39.15.0",
"fs-extra": "^11.1.1",
"json2toml": "^6.0.0",
"lodash.merge": "^4.6.2",
"openai": "^4.12.3",
"simple-git": "^3.19.1",
"zod": "^3.22.4"
}
}