-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 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": "@wyre-technology/ninjaone-cli",
"version": "1.0.0",
"description": "CLI for NinjaOne RMM - device monitoring, patching, scripting, and alert management",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ninjaone": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wyre-technology/ninjaone-cli.git"
},
"keywords": [
"ninjaone",
"ninja",
"rmm",
"msp",
"cli",
"wyre",
"command-line"
],
"author": "Wyre Technology",
"license": "MIT",
"bugs": {
"url": "https://github.com/wyre-technology/ninjaone-cli/issues"
},
"homepage": "https://github.com/wyre-technology/ninjaone-cli#readme",
"dependencies": {
"@wyre-technology/node-ninjaone": "^1.0.0",
"commander": "^12.0.0",
"cli-table3": "^0.6.3",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}