@openmdm/cli 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/device-2DJ2HDTB.js +210 -0
- package/dist/device-2DJ2HDTB.js.map +1 -0
- package/dist/enroll-WDHCQQCE.js +111 -0
- package/dist/enroll-WDHCQQCE.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +78 -0
- package/dist/index.js.map +1 -0
- package/dist/init-625O2CRF.js +141 -0
- package/dist/init-625O2CRF.js.map +1 -0
- package/dist/migrate-HMECTTGA.js +245 -0
- package/dist/migrate-HMECTTGA.js.map +1 -0
- package/dist/policy-QGI5X7DH.js +222 -0
- package/dist/policy-QGI5X7DH.js.map +1 -0
- package/dist/push-GOOMUZVI.js +27 -0
- package/dist/push-GOOMUZVI.js.map +1 -0
- package/dist/stats-7LZFNZT2.js +78 -0
- package/dist/stats-7LZFNZT2.js.map +1 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openmdm/cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "CLI tools for OpenMDM - database migrations, admin commands, and device management",
|
|
5
|
+
"author": "OpenMDM Contributors",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"openmdm": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"commander": "^12.0.0",
|
|
17
|
+
"chalk": "^5.3.0",
|
|
18
|
+
"inquirer": "^9.2.0",
|
|
19
|
+
"ora": "^8.0.0",
|
|
20
|
+
"dotenv": "^16.0.0",
|
|
21
|
+
"qrcode": "^1.5.3",
|
|
22
|
+
"@openmdm/core": "0.2.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/inquirer": "^9.0.0",
|
|
26
|
+
"@types/qrcode": "^1.5.0",
|
|
27
|
+
"tsup": "^8.0.0",
|
|
28
|
+
"typescript": "^5.5.0"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"openmdm",
|
|
32
|
+
"cli",
|
|
33
|
+
"mdm",
|
|
34
|
+
"admin"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/azoila/openmdm.git",
|
|
40
|
+
"directory": "packages/cli"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://openmdm.dev",
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/azoila/openmdm/issues"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsup",
|
|
51
|
+
"dev": "tsup --watch",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"clean": "rm -rf dist",
|
|
54
|
+
"start": "node dist/index.js"
|
|
55
|
+
}
|
|
56
|
+
}
|