@5ive-tech/cli 1.0.4 → 1.0.6

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 (2) hide show
  1. package/README.md +1 -13
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  CLI for building, testing, deploying, and executing 5ive DSL programs.
4
4
 
5
- This README is for external users working with:
6
- - `five-cli`
7
- - `five-sdk`
8
- - [5ive frontend](https://5ive.tech)
9
-
10
5
  ## Install
11
6
 
12
7
  ```bash
@@ -76,8 +71,6 @@ For on-chain commands (`deploy`, `execute`, `deploy-and-execute`, `namespace`),
76
71
 
77
72
  If none are set, on-chain commands fail fast with a program ID setup error.
78
73
 
79
- See: [PROGRAM_ID_SETUP.md](./PROGRAM_ID_SETUP.md)
80
-
81
74
  ## Standard Workflows
82
75
 
83
76
  ### Project build flow
@@ -176,7 +169,7 @@ five deploy build/main.five --target devnet --network https://your-rpc.example.c
176
169
 
177
170
  ## Artifact and SDK Interop
178
171
 
179
- `five-cli` and `five-sdk` work best with `.five` artifacts:
172
+ `@5ive-tech/cli` and `@5ive-tech/sdk` work best with `.five` artifacts:
180
173
 
181
174
  - Compile with CLI to `.five`
182
175
  - Load and interact in SDK via ABI-aware helpers
@@ -219,8 +212,3 @@ five compile --help
219
212
  five execute --help
220
213
  five config --help
221
214
  ```
222
-
223
- ## Links
224
-
225
- - Program ID setup: [PROGRAM_ID_SETUP.md](./PROGRAM_ID_SETUP.md)
226
- - 5ive frontend: [5ive.tech](https://5ive.tech)
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@5ive-tech/cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "High-performance CLI for Five VM development with WebAssembly integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "five": "./dist/index.js",
9
- "five-cli": "./dist/index.js"
8
+ "five": "dist/index.js",
9
+ "five-cli": "dist/index.js"
10
10
  },
11
11
  "engines": {
12
12
  "node": ">=18.0.0"
@@ -79,7 +79,7 @@
79
79
  "ora": "^8.0.1",
80
80
  "semver": "^7.6.0",
81
81
  "ws": "^8.16.0",
82
- "@5ive-tech/sdk": "^1.1.2"
82
+ "@5ive-tech/sdk": "^1.1.3"
83
83
  },
84
84
  "devDependencies": {
85
85
  "@types/fs-extra": "^11.0.4",