@reliverse/rempts 1.7.49 → 1.7.51
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 +1 -1
- package/README.md +1 -52
- package/dist-npm/bin/mod.d.mts +117 -697
- package/dist-npm/bin/mod.mjs +767 -2453
- package/package.json +7 -45
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reliverse/rempts",
|
|
3
3
|
"author": "reliverse",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.51",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./dist-npm/bin/mod.mjs",
|
|
@@ -36,80 +36,42 @@
|
|
|
36
36
|
],
|
|
37
37
|
"description": "@reliverse/rempts is a modern, type-safe toolkit for building delightful cli experiences. it's fast, flexible, and made for developer happiness. file-based commands keep things simple.",
|
|
38
38
|
"scripts": {
|
|
39
|
+
"dev": "bun example/cli.ts",
|
|
39
40
|
"pub": "bun unbuild && bun publish",
|
|
40
|
-
"dev": "node -e 'console.log(`👉 bun dev:[prompts,modern,classic]`)'",
|
|
41
41
|
"dev:prompts": "bun example/prompts/mod.ts",
|
|
42
42
|
"dev:modern": "bun example/launcher/modern.ts",
|
|
43
43
|
"dev:classic": "bun example/launcher/classic.ts",
|
|
44
|
-
"dev:trpc": "bun example/trpc-orpc/commander/main.ts",
|
|
45
44
|
"latest": "bun update --latest && bun check",
|
|
46
45
|
"check": "tsc --noEmit && biome check --fix --unsafe",
|
|
47
46
|
"agg": "rse tools --tool agg --input src/libs/core/core-impl --out src/libs/core/core-main.ts --recursive --named --strip src/libs/core",
|
|
48
47
|
"tests": "bun test ./.tests"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
|
-
"@clack/prompts": "^0.11.0",
|
|
52
50
|
"@figliolia/chalk-animation": "^1.0.4",
|
|
53
|
-
"@inquirer/prompts": "^7.8.3",
|
|
54
|
-
"@orpc/server": "^1.8.3",
|
|
55
|
-
"@reliverse/pathkit": "^1.3.4",
|
|
56
|
-
"@reliverse/reliarg": "^1.0.3",
|
|
57
51
|
"@reliverse/relico": "^1.3.5",
|
|
58
|
-
"@reliverse/
|
|
59
|
-
"@reliverse/relinka": "^1.5.5",
|
|
52
|
+
"@reliverse/relinka": "^1.5.6",
|
|
60
53
|
"@reliverse/runtime": "^1.0.3",
|
|
61
|
-
"@trpc/server": "^11.5.0",
|
|
62
54
|
"ansi-escapes": "^7.0.0",
|
|
63
|
-
"arktype": "^2.1.20",
|
|
64
|
-
"c12": "^3.2.0",
|
|
65
55
|
"cli-spinners": "^3.2.0",
|
|
66
|
-
"commander": "^14.0.0",
|
|
67
|
-
"detect-package-manager": "^3.0.2",
|
|
68
|
-
"effect": "^3.17.9",
|
|
69
|
-
"enquirer": "^2.4.1",
|
|
70
56
|
"figlet": "^1.8.2",
|
|
71
57
|
"gradient-string": "^3.0.0",
|
|
72
|
-
"jiti": "^2.5.1",
|
|
73
|
-
"json-schema": "^0.4.0",
|
|
74
58
|
"log-update": "^6.1.0",
|
|
75
|
-
"node-emoji": "^2.2.0",
|
|
76
|
-
"omelette": "^0.4.17",
|
|
77
59
|
"ora": "^8.2.0",
|
|
78
60
|
"pkg-types": "^2.3.0",
|
|
79
|
-
"prompts": "^2.4.2",
|
|
80
61
|
"sisteransi": "^1.0.5",
|
|
81
|
-
"terminal-kit": "^3.1.2",
|
|
82
62
|
"terminal-size": "^4.0.0",
|
|
83
63
|
"ts-regex-builder": "^1.8.2",
|
|
84
|
-
"
|
|
85
|
-
"unicorn-magic": "^0.3.0",
|
|
86
|
-
"valibot": "^1.1.0",
|
|
87
|
-
"wrap-ansi": "^9.0.0",
|
|
88
|
-
"zod": "^4.0.17",
|
|
89
|
-
"zod-to-json-schema": "^3.24.6"
|
|
64
|
+
"wrap-ansi": "^9.0.0"
|
|
90
65
|
},
|
|
91
66
|
"devDependencies": {
|
|
92
|
-
"@biomejs/biome": "^2.2.
|
|
93
|
-
"@orpc/contract": "^1.8.3",
|
|
94
|
-
"@reliverse/dler": "1.7.96",
|
|
95
|
-
"@reliverse/rse": "^1.7.12",
|
|
67
|
+
"@biomejs/biome": "^2.2.2",
|
|
96
68
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
69
|
+
"detect-package-manager": "^3.0.2",
|
|
97
70
|
"@types/bun": "^1.2.20",
|
|
98
|
-
"@types/figlet": "^1.7.0",
|
|
99
71
|
"@types/node": "^24.3.0",
|
|
100
|
-
"@types/omelette": "^0.4.5",
|
|
101
|
-
"@types/prompts": "^2.4.9",
|
|
102
|
-
"@types/terminal-kit": "^2.5.7",
|
|
103
72
|
"@types/wrap-ansi": "^8.1.0",
|
|
104
|
-
"@valibot/to-json-schema": "^1.3.0",
|
|
105
|
-
"expect-type": "^1.2.2",
|
|
106
|
-
"fs-syncer": "^0.5.3",
|
|
107
|
-
"minimatch": "^10.0.3",
|
|
108
|
-
"obuild": "^0.2.1",
|
|
109
|
-
"picocolors": "^1.1.1",
|
|
110
|
-
"strip-ansi": "^7.1.0",
|
|
111
73
|
"typescript": "^5.9.2",
|
|
112
74
|
"ultracite": "^5.2.5",
|
|
113
75
|
"unbuild": "^3.6.1"
|
|
114
76
|
}
|
|
115
|
-
}
|
|
77
|
+
}
|