@tq1086/urpf-cli 1.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.
Files changed (3) hide show
  1. package/dist/index.js +6711 -1212
  2. package/package.json +78 -63
  3. package/readme.md +411 -377
package/package.json CHANGED
@@ -1,63 +1,78 @@
1
- {
2
- "name": "@tq1086/urpf-cli",
3
- "version": "1.0.0",
4
- "description": "URPF CLI 工具 - 基于 URPF v1.0 规范的命令行打包工具",
5
- "main": "dist/index.js",
6
- "bin": {
7
- "urpf-cli": "dist/index.js"
8
- },
9
- "type": "module",
10
- "scripts": {
11
- "test": "vitest",
12
- "test:coverage": "vitest --coverage",
13
- "lint": "eslint src --ext .ts",
14
- "format": "prettier --write \"src/**/*.ts\"",
15
- "build": "tsup",
16
- "dev": "tsup --watch",
17
- "start": "node dist/index.js"
18
- },
19
- "keywords": [
20
- "urpf",
21
- "pack",
22
- "cli",
23
- "universal-resource-package-format",
24
- "file-packaging",
25
- "archive"
26
- ],
27
- "author": "",
28
- "license": "ISC",
29
- "homepage": "https://gitcode.com/tq1086/urpf-cli",
30
- "repository": {
31
- "type": "git",
32
- "url": "git@gitcode.com:tq1086/urpf-cli.git"
33
- },
34
- "bugs": {
35
- "url": "https://gitcode.com/tq1086/urpf-cli/issues"
36
- },
37
- "devDependencies": {
38
- "@eslint/js": "^9.39.2",
39
- "@types/node": "^25.1.0",
40
- "@typescript-eslint/eslint-plugin": "^8.54.0",
41
- "@typescript-eslint/parser": "^8.54.0",
42
- "@vitest/coverage-v8": "^4.0.18",
43
- "@vitest/ui": "^4.0.18",
44
- "eslint": "^9.39.2",
45
- "prettier": "^3.8.1",
46
- "tsup": "^8.5.1",
47
- "typescript": "^5.9.3",
48
- "typescript-eslint": "^8.54.0",
49
- "vitest": "^4.0.18"
50
- },
51
- "dependencies": {
52
- "@tq1086/urpf-sdk": "^0.1.0",
53
- "commander": "^14.0.2"
54
- },
55
- "files": [
56
- "dist",
57
- "README.md",
58
- "LICENSE"
59
- ],
60
- "engines": {
61
- "node": ">=20.0.0"
62
- }
63
- }
1
+ {
2
+ "name": "@tq1086/urpf-cli",
3
+ "version": "2.1.0",
4
+ "description": "URPF CLI 工具 - 基于 URPF v1.0 规范的命令行打包工具",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "urpf-cli": "dist/index.js"
8
+ },
9
+ "type": "module",
10
+ "scripts": {
11
+ "test": "vitest",
12
+ "test:coverage": "vitest --coverage",
13
+ "lint": "eslint src --ext .ts",
14
+ "format": "prettier --write \"src/**/*.ts\"",
15
+ "build": "tsup",
16
+ "dev": "tsup --watch",
17
+ "start": "node dist/index.js"
18
+ },
19
+ "keywords": [
20
+ "urpf",
21
+ "pack",
22
+ "cli",
23
+ "universal-resource-package-format",
24
+ "file-packaging",
25
+ "archive"
26
+ ],
27
+ "author": "",
28
+ "license": "ISC",
29
+ "homepage": "https://gitcode.com/tq1086/urpf-cli",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git@gitcode.com:tq1086/urpf-cli.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://gitcode.com/tq1086/urpf-cli/issues"
36
+ },
37
+ "devDependencies": {
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",
42
+ "@types/node": "^25.1.0",
43
+ "@types/properties-reader": "^2.1.3",
44
+ "@types/xml2js": "^0.4.14",
45
+ "@typescript-eslint/eslint-plugin": "^8.54.0",
46
+ "@typescript-eslint/parser": "^8.54.0",
47
+ "@vitest/coverage-v8": "^4.0.18",
48
+ "@vitest/ui": "^4.0.18",
49
+ "eslint": "^9.39.2",
50
+ "prettier": "^3.8.1",
51
+ "tsup": "^8.5.1",
52
+ "typescript": "^5.9.3",
53
+ "typescript-eslint": "^8.54.0",
54
+ "vitest": "^4.0.18"
55
+ },
56
+ "dependencies": {
57
+ "@tq1086/urpf-sdk": "^0.1.0",
58
+ "axios": "^1.7.0",
59
+ "clipboardy": "^5.1.0",
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"
69
+ },
70
+ "files": [
71
+ "dist",
72
+ "README.md",
73
+ "LICENSE"
74
+ ],
75
+ "engines": {
76
+ "node": ">=20.0.0"
77
+ }
78
+ }