@azeth/cli 0.2.0 → 0.2.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/bin/azeth.js +0 -0
- package/package.json +13 -15
package/bin/azeth.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azeth/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for the Azeth trust infrastructure — register, discover, pay, and manage machine participants",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,9 +26,17 @@
|
|
|
26
26
|
"README.md",
|
|
27
27
|
"LICENSE"
|
|
28
28
|
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsc --project tsconfig.json",
|
|
31
|
+
"dev": "tsx src/index.ts",
|
|
32
|
+
"start": "node bin/azeth.js",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"clean": "rm -rf dist"
|
|
36
|
+
},
|
|
29
37
|
"dependencies": {
|
|
30
|
-
"@azeth/common": "^0.2.
|
|
31
|
-
"@azeth/sdk": "
|
|
38
|
+
"@azeth/common": "^0.2.1",
|
|
39
|
+
"@azeth/sdk": "^0.2.1",
|
|
32
40
|
"commander": "^12.1.0",
|
|
33
41
|
"chalk": "^5.3.0",
|
|
34
42
|
"ora": "^8.1.0",
|
|
@@ -39,22 +47,12 @@
|
|
|
39
47
|
"@hono/node-server": "^1.13.0",
|
|
40
48
|
"typescript": "^5.7.0",
|
|
41
49
|
"vitest": "^2.1.0",
|
|
42
|
-
"tsx": "^4.19.0"
|
|
43
|
-
"@changesets/cli": "^2.27.0"
|
|
50
|
+
"tsx": "^4.19.0"
|
|
44
51
|
},
|
|
45
52
|
"publishConfig": {
|
|
46
53
|
"access": "public"
|
|
47
54
|
},
|
|
48
55
|
"engines": {
|
|
49
56
|
"node": ">=20.0.0"
|
|
50
|
-
},
|
|
51
|
-
"scripts": {
|
|
52
|
-
"build": "tsc --project tsconfig.json",
|
|
53
|
-
"dev": "tsx src/index.ts",
|
|
54
|
-
"start": "node bin/azeth.js",
|
|
55
|
-
"test": "vitest run",
|
|
56
|
-
"typecheck": "tsc --noEmit",
|
|
57
|
-
"clean": "rm -rf dist",
|
|
58
|
-
"release": "pnpm build && changeset publish"
|
|
59
57
|
}
|
|
60
|
-
}
|
|
58
|
+
}
|