-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.52 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.52 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "rackmanage",
"version": "0.0.3",
"description": "Rack Manage CLI agent for monitoring and interacting with on-premises equipment",
"homepage": "https://github.com/RackManage/agent",
"bugs": "https://github.com/RackManage/agent/issues",
"repository": "RackManage/agent",
"license": "MIT",
"author": "Rack Manage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"rackmanage": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json",
"/theme.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b && yarn run copyassets",
"copyassets": "copyfiles -u 1 src/**/*.tpl dist",
"lint": "eslint src --ext .ts",
"prepack": "yarn run build && oclif manifest && shx rm -rf docs && oclif readme --multi",
"pretarball": "ts-node --transpile-only ../../scripts/sign-for-notarization.ts",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "yarn run build",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn run lint",
"version": "shx rm -rf docs && oclif readme --multi && git add README.md"
},
"oclif": {
"bin": "rackmanage",
"commands": "./dist/commands",
"dirname": "RackManage",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update",
"@oclif/plugin-version",
"@oclif/plugin-not-found"
],
"topicSeparator": " ",
"topics": {
"server": {
"description": "Manage servers monitored by the agent"
},
"service": {
"description": "Manage the agent background service"
},
"ipmi": {
"description": "Manage IPMI settings for servers"
},
"plugins": {
"description": "Manage plugins for the agent"
}
},
"macos": {
"identifier": "io.rackmanage.agent",
"sign": "\"Developer ID Installer: Carter Roeser (87D84YS9QF)\""
},
"windows": {
"name": "Rack Manage Agent",
"homepage": "https://rackmanage.io"
},
"update": {
"s3": {
"host": "https://agent.rackmanage.io",
"bucket": "rmagent",
"xz": true
}
},
"additionalVersionFlags": [
"-v"
],
"additionalHelpFlags": [
"-h"
],
"theme": "theme.json"
},
"dependencies": {
"@oclif/core": "^4.10.5",
"@oclif/plugin-help": "^6.2.44",
"@oclif/plugin-not-found": "^3.2.80",
"@oclif/plugin-update": "^4.7.32",
"@oclif/plugin-version": "^2.2.42",
"@oclif/plugin-warn-if-update-available": "^3.1.60",
"cli-table": "^0.3.11",
"cli-table3": "^0.6.5",
"firebase": "^12.12.1",
"jsonwebtoken": "^9.0.3",
"keytar": "^7.9.0",
"ping-monitor": "^0.8.2",
"promptly": "^3.2.0",
"sqlite3": "^6.0.1",
"winreg": "^1.2.5"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.1.18",
"@types/chai": "^5.2.3",
"@types/klaw": "^3.0.7",
"@types/mocha": "^10.0.10",
"@types/node": "22",
"@types/promptly": "^3.0.5",
"@types/which": "^3.0.4",
"chai": "^6.2.2",
"copyfiles": "^2.4.1",
"eslint": "^10.2.1",
"eslint-config-oclif": "^6.0.159",
"eslint-config-prettier": "^10.1.8",
"klaw": "^4.1.0",
"mocha": "^11.7.5",
"oclif": "^4.23.0",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"which": "^6.0.1"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}