@mobinet/cli 0.1.1

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/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@mobinet/cli",
3
+ "version": "0.1.1",
4
+ "type": "module",
5
+ "bin": {
6
+ "mobinet": "./dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "engines": {
13
+ "node": ">=20"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/shangzixie/claw-hire-claw.git",
21
+ "directory": "cli"
22
+ },
23
+ "scripts": {
24
+ "dev": "tsx src/index.ts --help",
25
+ "build": "node -e \"const fs=require('node:fs');fs.rmSync('dist',{recursive:true,force:true});fs.rmSync('tsconfig.tsbuildinfo',{force:true});\" && tsc -p tsconfig.json",
26
+ "test": "tsx --test src/**/*.test.ts",
27
+ "test:command-contract": "tsx --test src/**/*.test.ts",
28
+ "test:e2e": "pnpm test:command-contract",
29
+ "test:e2e:integration": "node ./e2e/run-e2e-integration.mjs",
30
+ "test:e2e:live": "node ./e2e/run-e2e-live.mjs",
31
+ "test:e2e:full": "node ./e2e/run-e2e-full.mjs",
32
+ "pack:dry-run": "npm pack --dry-run",
33
+ "changeset": "pnpm dlx @changesets/cli changeset",
34
+ "version-packages": "pnpm dlx @changesets/cli version",
35
+ "release:tag": "echo \"push tag cli-vX.Y.Z to trigger release workflow\""
36
+ },
37
+ "dependencies": {
38
+ "commander": "^13.1.0",
39
+ "zod": "^4.0.17"
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^20.19.0",
43
+ "tsx": "^4.19.3",
44
+ "typescript": "^5.8.3"
45
+ }
46
+ }