-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "@cpn-console/observability-plugin",
"type": "module",
"version": "1.3.1",
"description": "Observability plugin for DSO console",
"repository": {
"type": "git",
"url": "https://github.com/cloud-pi-native/console-plugin-observability"
},
"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": "^4.1.0",
"@cpn-console/logger": "^1.0.1",
"@gitbeaker/core": "^43.8.0",
"@gitbeaker/requester-utils": "^43.8.0",
"@gitbeaker/rest": "^43.8.0",
"@keycloak/keycloak-admin-client": "^26.2.5",
"js-yaml": "4.1.0",
"uuid": "^11.1.0",
"yaml-edit": "^0.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@cpn-console/eslint-config": "^1.0.2",
"@cpn-console/gitlab-plugin": "^3.3.1",
"@cpn-console/keycloak-plugin": "^2.1.0",
"@cpn-console/shared": "^1.4.0",
"@cpn-console/ts-config": "^1.1.0",
"@cpn-console/vault-plugin": "^2.4.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.34",
"@types/uuid": "^10.0.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"nodemon": "^3.1.10",
"typescript": "^5.8.3",
"typescript-transform-paths": "^3.5.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"tag": "latest"
}
}