-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "@cpn-console/observability-plugin",
"type": "module",
"version": "0.1.2",
"description": "Loki plugin for DSO console",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./types",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "nodemon --watch src --ext .ts --exec 'npm run build'",
"build": "tsc",
"build:clean": "rm -rf ./dist ./types ./tsconfig.tsbuildinfo",
"format": "eslint ./src --fix",
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"dependencies": {
"@cpn-console/hooks": "^2.5.0",
"@gitbeaker/core": "~40.6.0",
"@gitbeaker/requester-utils": "~40.6.0",
"@gitbeaker/rest": "~40.6.0",
"@keycloak/keycloak-admin-client": "^26.1.0",
"@kubernetes/client-node": "^1.0.0",
"js-yaml": "4.1.0",
"uuid": "^11.0.5",
"yaml-edit": "^0.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@cpn-console/eslint-config": "^1.0.2",
"@cpn-console/gitlab-plugin": "^3.0.0",
"@cpn-console/keycloak-plugin": "^2.0.6",
"@cpn-console/kubernetes-plugin": "^2.1.1",
"@cpn-console/shared": "^1.2.0",
"@cpn-console/ts-config": "^1.1.0",
"@cpn-console/vault-plugin": "^2.2.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"husky": "^9.1.7",
"nodemon": "^3.1.9",
"typescript": "^5.7.3",
"typescript-transform-paths": "^3.5.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"tag": "latest"
}
}