@tq1086/urpf-cli 2.0.0 → 2.1.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/dist/index.js +2763 -426
- package/package.json +16 -2
- package/readme.md +664 -423
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tq1086/urpf-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "URPF CLI 工具 - 基于 URPF v1.0 规范的命令行打包工具",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,7 +36,12 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@eslint/js": "^9.39.2",
|
|
39
|
+
"@types/ini": "^4.1.1",
|
|
40
|
+
"@types/inquirer": "^9.0.7",
|
|
41
|
+
"@types/js-yaml": "^4.0.9",
|
|
39
42
|
"@types/node": "^25.1.0",
|
|
43
|
+
"@types/properties-reader": "^2.1.3",
|
|
44
|
+
"@types/xml2js": "^0.4.14",
|
|
40
45
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
41
46
|
"@typescript-eslint/parser": "^8.54.0",
|
|
42
47
|
"@vitest/coverage-v8": "^4.0.18",
|
|
@@ -50,8 +55,17 @@
|
|
|
50
55
|
},
|
|
51
56
|
"dependencies": {
|
|
52
57
|
"@tq1086/urpf-sdk": "^0.1.0",
|
|
58
|
+
"axios": "^1.7.0",
|
|
53
59
|
"clipboardy": "^5.1.0",
|
|
54
|
-
"commander": "^14.0.2"
|
|
60
|
+
"commander": "^14.0.2",
|
|
61
|
+
"diff": "^7.0.0",
|
|
62
|
+
"inquirer": "^9.3.0",
|
|
63
|
+
"ini": "^6.0.0",
|
|
64
|
+
"js-yaml": "^4.1.1",
|
|
65
|
+
"minimatch": "^10.0.0",
|
|
66
|
+
"properties-reader": "^3.0.1",
|
|
67
|
+
"toml": "^3.0.0",
|
|
68
|
+
"xml2js": "^0.6.2"
|
|
55
69
|
},
|
|
56
70
|
"files": [
|
|
57
71
|
"dist",
|