@webos-tools/cli 3.1.2 → 3.1.3
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/CHANGELOG.md +173 -166
- package/LICENSES/342/200/216/LicenseRef-3rd_party_licenses.txt +1355 -0
- package/bin/ares-setup-device.js +573 -525
- package/files/conf-base/template-conf/apollo-sdk-templates.json +55 -50
- package/files/templates/apollo-sdk-templates/native-service/CMakeLists.txt +72 -0
- package/files/templates/apollo-sdk-templates/native-service/services.json +11 -0
- package/files/templates/apollo-sdk-templates/native-service/src/main.c +144 -0
- package/lib/base/setup-device.js +338 -335
- package/lib/generator.js +408 -377
- package/npm-shrinkwrap.json +9242 -9242
- package/package.json +100 -100
- package/sbom-info.yaml +1758 -0
- package/webos-tools-cli-3.1.3.tgz +0 -0
- package/webos-tools-cli-3.1.2.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@webos-tools/cli",
|
|
3
|
-
"version": "3.1.
|
|
4
|
-
"description": "Command Line Interface for development webOS application and service",
|
|
5
|
-
"main": "APIs.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"postinstall": "node scripts/postinstall.js"
|
|
8
|
-
},
|
|
9
|
-
"author": "ye.kim",
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "https://github.com/webos-tools/cli.git"
|
|
13
|
-
},
|
|
14
|
-
"license": "Apache-2.0",
|
|
15
|
-
"bin": {
|
|
16
|
-
"ares": "bin/ares.js",
|
|
17
|
-
"ares-config": "bin/ares-config.js",
|
|
18
|
-
"ares-device": "bin/ares-device.js",
|
|
19
|
-
"ares-device-info": "bin/ares-device-info.js",
|
|
20
|
-
"ares-generate": "bin/ares-generate.js",
|
|
21
|
-
"ares-inspect": "bin/ares-inspect.js",
|
|
22
|
-
"ares-install": "bin/ares-install.js",
|
|
23
|
-
"ares-launch": "bin/ares-launch.js",
|
|
24
|
-
"ares-log": "bin/ares-log.js",
|
|
25
|
-
"ares-novacom": "bin/ares-novacom.js",
|
|
26
|
-
"ares-package": "bin/ares-package.js",
|
|
27
|
-
"ares-push": "bin/ares-push.js",
|
|
28
|
-
"ares-pull": "bin/ares-pull.js",
|
|
29
|
-
"ares-server": "bin/ares-server.js",
|
|
30
|
-
"ares-setup-device": "bin/ares-setup-device.js",
|
|
31
|
-
"ares-shell": "bin/ares-shell.js"
|
|
32
|
-
},
|
|
33
|
-
"engines": {
|
|
34
|
-
"node": ">=14.15.1"
|
|
35
|
-
},
|
|
36
|
-
"engineStrict": true,
|
|
37
|
-
"os": [
|
|
38
|
-
"darwin",
|
|
39
|
-
"linux",
|
|
40
|
-
"win32"
|
|
41
|
-
],
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"ar-async": "0.1.4",
|
|
44
|
-
"async": "3.2.5",
|
|
45
|
-
"bluebird": "3.7.2",
|
|
46
|
-
"body-parser": "1.19.0",
|
|
47
|
-
"chalk": "1.1.3",
|
|
48
|
-
"chardet": "0.8.0",
|
|
49
|
-
"chokidar": "3.5.2",
|
|
50
|
-
"combined-stream": "1.0.8",
|
|
51
|
-
"csv-writer": "1.6.0",
|
|
52
|
-
"decompress": "4.2.1",
|
|
53
|
-
"easy-table": "1.1.1",
|
|
54
|
-
"elfy": "1.0.0",
|
|
55
|
-
"encoding": "0.1.13",
|
|
56
|
-
"express": "4.17.1",
|
|
57
|
-
"extract-zip": "1.7.0",
|
|
58
|
-
"fs-extra": "8.1.0",
|
|
59
|
-
"fstream": "1.0.12",
|
|
60
|
-
"graceful-fs": "4.2.4",
|
|
61
|
-
"inherits": "1.0.2",
|
|
62
|
-
"inquirer": "7.0.0",
|
|
63
|
-
"jsonschema": "1.2.6",
|
|
64
|
-
"mkdirp": "0.5.5",
|
|
65
|
-
"nopt": "2.1.2",
|
|
66
|
-
"npmlog": "4.1.2",
|
|
67
|
-
"ora": "5.4.0",
|
|
68
|
-
"request": "2.88.2",
|
|
69
|
-
"rimraf": "3.0.2",
|
|
70
|
-
"semver": "7.3.2",
|
|
71
|
-
"shelljs": "0.8.5",
|
|
72
|
-
"sprintf-js": "1.1.2",
|
|
73
|
-
"ssdp-js": "1.0.1",
|
|
74
|
-
"ssh2": "1.15.0",
|
|
75
|
-
"stream-buffers": "3.0.2",
|
|
76
|
-
"strip-bom": "1.0.0",
|
|
77
|
-
"tar": "6.2.0",
|
|
78
|
-
"temp": "0.9.1",
|
|
79
|
-
"terser": "4.8.0"
|
|
80
|
-
},
|
|
81
|
-
"devDependencies": {
|
|
82
|
-
"eslint": "6.8.0",
|
|
83
|
-
"eslint-plugin-import": "2.22.0",
|
|
84
|
-
"jasmine": "3.8.0",
|
|
85
|
-
"jasmine-pretty-html-reporter-jasmine3.8": "0.2.5",
|
|
86
|
-
"jasmine-spec-reporter": "4.2.1"
|
|
87
|
-
},
|
|
88
|
-
"keywords": [
|
|
89
|
-
"ares-cli",
|
|
90
|
-
"webOS",
|
|
91
|
-
"webOS OSE",
|
|
92
|
-
"webOS TV",
|
|
93
|
-
"webOS CLI",
|
|
94
|
-
"webOS SDK",
|
|
95
|
-
"LG"
|
|
96
|
-
],
|
|
97
|
-
"bugs": {
|
|
98
|
-
"url": "https://github.com/webos-tools/cli/issues"
|
|
99
|
-
},
|
|
100
|
-
"homepage": "https://github.com/webos-tools/cli#readme"
|
|
1
|
+
{
|
|
2
|
+
"name": "@webos-tools/cli",
|
|
3
|
+
"version": "3.1.3",
|
|
4
|
+
"description": "Command Line Interface for development webOS application and service",
|
|
5
|
+
"main": "APIs.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"postinstall": "node scripts/postinstall.js"
|
|
8
|
+
},
|
|
9
|
+
"author": "ye.kim",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/webos-tools/cli.git"
|
|
13
|
+
},
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
|
+
"bin": {
|
|
16
|
+
"ares": "bin/ares.js",
|
|
17
|
+
"ares-config": "bin/ares-config.js",
|
|
18
|
+
"ares-device": "bin/ares-device.js",
|
|
19
|
+
"ares-device-info": "bin/ares-device-info.js",
|
|
20
|
+
"ares-generate": "bin/ares-generate.js",
|
|
21
|
+
"ares-inspect": "bin/ares-inspect.js",
|
|
22
|
+
"ares-install": "bin/ares-install.js",
|
|
23
|
+
"ares-launch": "bin/ares-launch.js",
|
|
24
|
+
"ares-log": "bin/ares-log.js",
|
|
25
|
+
"ares-novacom": "bin/ares-novacom.js",
|
|
26
|
+
"ares-package": "bin/ares-package.js",
|
|
27
|
+
"ares-push": "bin/ares-push.js",
|
|
28
|
+
"ares-pull": "bin/ares-pull.js",
|
|
29
|
+
"ares-server": "bin/ares-server.js",
|
|
30
|
+
"ares-setup-device": "bin/ares-setup-device.js",
|
|
31
|
+
"ares-shell": "bin/ares-shell.js"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=14.15.1"
|
|
35
|
+
},
|
|
36
|
+
"engineStrict": true,
|
|
37
|
+
"os": [
|
|
38
|
+
"darwin",
|
|
39
|
+
"linux",
|
|
40
|
+
"win32"
|
|
41
|
+
],
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"ar-async": "0.1.4",
|
|
44
|
+
"async": "3.2.5",
|
|
45
|
+
"bluebird": "3.7.2",
|
|
46
|
+
"body-parser": "1.19.0",
|
|
47
|
+
"chalk": "1.1.3",
|
|
48
|
+
"chardet": "0.8.0",
|
|
49
|
+
"chokidar": "3.5.2",
|
|
50
|
+
"combined-stream": "1.0.8",
|
|
51
|
+
"csv-writer": "1.6.0",
|
|
52
|
+
"decompress": "4.2.1",
|
|
53
|
+
"easy-table": "1.1.1",
|
|
54
|
+
"elfy": "1.0.0",
|
|
55
|
+
"encoding": "0.1.13",
|
|
56
|
+
"express": "4.17.1",
|
|
57
|
+
"extract-zip": "1.7.0",
|
|
58
|
+
"fs-extra": "8.1.0",
|
|
59
|
+
"fstream": "1.0.12",
|
|
60
|
+
"graceful-fs": "4.2.4",
|
|
61
|
+
"inherits": "1.0.2",
|
|
62
|
+
"inquirer": "7.0.0",
|
|
63
|
+
"jsonschema": "1.2.6",
|
|
64
|
+
"mkdirp": "0.5.5",
|
|
65
|
+
"nopt": "2.1.2",
|
|
66
|
+
"npmlog": "4.1.2",
|
|
67
|
+
"ora": "5.4.0",
|
|
68
|
+
"request": "2.88.2",
|
|
69
|
+
"rimraf": "3.0.2",
|
|
70
|
+
"semver": "7.3.2",
|
|
71
|
+
"shelljs": "0.8.5",
|
|
72
|
+
"sprintf-js": "1.1.2",
|
|
73
|
+
"ssdp-js": "1.0.1",
|
|
74
|
+
"ssh2": "1.15.0",
|
|
75
|
+
"stream-buffers": "3.0.2",
|
|
76
|
+
"strip-bom": "1.0.0",
|
|
77
|
+
"tar": "6.2.0",
|
|
78
|
+
"temp": "0.9.1",
|
|
79
|
+
"terser": "4.8.0"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"eslint": "6.8.0",
|
|
83
|
+
"eslint-plugin-import": "2.22.0",
|
|
84
|
+
"jasmine": "3.8.0",
|
|
85
|
+
"jasmine-pretty-html-reporter-jasmine3.8": "0.2.5",
|
|
86
|
+
"jasmine-spec-reporter": "4.2.1"
|
|
87
|
+
},
|
|
88
|
+
"keywords": [
|
|
89
|
+
"ares-cli",
|
|
90
|
+
"webOS",
|
|
91
|
+
"webOS OSE",
|
|
92
|
+
"webOS TV",
|
|
93
|
+
"webOS CLI",
|
|
94
|
+
"webOS SDK",
|
|
95
|
+
"LG"
|
|
96
|
+
],
|
|
97
|
+
"bugs": {
|
|
98
|
+
"url": "https://github.com/webos-tools/cli/issues"
|
|
99
|
+
},
|
|
100
|
+
"homepage": "https://github.com/webos-tools/cli#readme"
|
|
101
101
|
}
|