-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.54 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
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
125
126
{
"name": "rmagent",
"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": {
"rmagent": "./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 . --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": "rmagent",
"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.rmagent",
"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": "^3",
"@oclif/plugin-help": "^6",
"@oclif/plugin-not-found": "^3.1.1",
"@oclif/plugin-update": "^4.2.3",
"@oclif/plugin-version": "^2.0.16",
"@oclif/plugin-warn-if-update-available": "^3.0.15",
"cli-table": "^0.3.11",
"cli-table3": "^0.6.4",
"firebase": "^10.10.0",
"jsonwebtoken": "^9.0.2",
"keytar": "^7.9.0",
"needle": "^3.3.1",
"ping-monitor": "^0.8.2",
"promptly": "^3.2.0",
"sqlite3": "^5.1.7",
"winreg": "1.2.4"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/klaw": "^3.0.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@types/promptly": "^3.0.5",
"@types/which": "^3.0.3",
"chai": "^5.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"klaw": "^4.1.0",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5",
"which": "^4.0.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}