@awarizon/cli 1.0.0 → 1.0.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 +17 -13
package/package.json
CHANGED
|
@@ -1,23 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awarizon/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI for Awarizon Web3 SDK — generate typed contract clients and React hooks",
|
|
5
|
-
"bin": {
|
|
6
|
-
|
|
7
|
-
"files": ["dist"],
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "tsup",
|
|
10
|
-
"dev": "tsup --watch",
|
|
11
|
-
"test": "vitest run",
|
|
12
|
-
"typecheck": "tsc --noEmit",
|
|
13
|
-
"clean": "rimraf dist"
|
|
5
|
+
"bin": {
|
|
6
|
+
"awarizon": "./dist/index.js"
|
|
14
7
|
},
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
15
12
|
"dependencies": {
|
|
16
|
-
"@awarizon/abi-engine": "workspace:*",
|
|
17
13
|
"commander": "^12.0.0",
|
|
18
14
|
"chalk": "^5.3.0",
|
|
19
15
|
"ora": "^8.0.0",
|
|
20
|
-
"fs-extra": "^11.2.0"
|
|
16
|
+
"fs-extra": "^11.2.0",
|
|
17
|
+
"@awarizon/abi-engine": "1.0.1"
|
|
21
18
|
},
|
|
22
19
|
"devDependencies": {
|
|
23
20
|
"typescript": "^5.5.0",
|
|
@@ -26,5 +23,12 @@
|
|
|
26
23
|
"@types/fs-extra": "^11.0.0",
|
|
27
24
|
"viem": "^2.21.0",
|
|
28
25
|
"rimraf": "^5.0.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup",
|
|
29
|
+
"dev": "tsup --watch",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"clean": "rimraf dist"
|
|
29
33
|
}
|
|
30
|
-
}
|
|
34
|
+
}
|