-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.41 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
83
84
85
86
87
88
{
"name": "berget",
"version": "2.2.21",
"type": "module",
"main": "dist/index.js",
"bin": {
"berget": "dist/index.js"
},
"private": false,
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node --import tsx ./index.ts --local",
"login": "node --import tsx ./index.ts --local auth login",
"logout": "node --import tsx ./index.ts --local auth logout",
"whoami": "node --import tsx ./index.ts --local auth whoami",
"build": "tsc",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build",
"generate-types": "openapi-typescript https://api.berget.ai/openapi.json -o src/types/api.d.ts",
"prepare": "husky"
},
"author": "Berget AI AB",
"license": "MIT",
"description": "This is a cli command for interacting with the AI infrastructure provider Berget",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/marked": "^5.0.2",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.15.17",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/eslint-plugin": "^1.6.17",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unicorn": "^64.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"tsx": "^4.19.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.8"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.6.2",
"commander": "^15.0.0",
"dotenv": "^17.2.3",
"fs-extra": "^11.3.0",
"globals": "^17.6.0",
"jsonc-parser": "^3.3.1",
"marked": "^15.0.0",
"marked-terminal": "^7.3.0",
"open": "^11.0.0",
"openapi-fetch": "^0.17.0",
"openapi-typescript": "^7.13.0",
"openid-client": "^6.8.4",
"readline": "^1.3.0",
"which": "^6.0.1",
"zod": "^4.1.12"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
}
}