-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "openderisk",
"version": "0.2.0",
"description": "OpenDeRisk AI-Native Risk Intelligence Systems — Your application system risk intelligent manager",
"module": "index.ts",
"type": "module",
"bin": {
"openderisk": "./bin/openderisk.ts",
"openderisk-server": "./bin/openderisk-server.ts"
},
"scripts": {
"postinstall": "bun run scripts/postinstall.ts",
"start": "bun run bin/openderisk.ts",
"server": "bun run bin/openderisk-server.ts",
"build": "bun build --target=bun ./bin/openderisk.ts --outfile=dist/openderisk",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"openderisk",
"ai",
"risk-management",
"root-cause-analysis",
"sre",
"devops",
"monitoring",
"observability"
],
"author": "HongjunYang <yhjun1026@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/derisk-ai/OpenDerisk",
"repository": {
"type": "git",
"url": "git+https://github.com/derisk-ai/OpenDerisk.git"
},
"bugs": {
"url": "https://github.com/derisk-ai/OpenDerisk/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"preferGlobal": true,
"files": [
"bin/",
"scripts/",
"README.md",
"LICENSE",
"bun.lockb"
]
}