@arcadiasystems/morse-cli 0.1.0 → 0.3.0
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/CHANGELOG.md +63 -1
- package/README.md +69 -3
- package/dist/index.js +1398 -699
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcadiasystems/morse-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Command-line interface for the Morse decentralized CMS on Sui.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -46,11 +46,16 @@
|
|
|
46
46
|
"lint": "biome check .",
|
|
47
47
|
"lint:fix": "biome check --write .",
|
|
48
48
|
"test": "bun test",
|
|
49
|
+
"test:unit": "bun test test/*.test.ts",
|
|
50
|
+
"test:cli": "bun test test/cli/",
|
|
49
51
|
"test:coverage": "bun test --coverage",
|
|
50
|
-
"
|
|
52
|
+
"test:e2e": "MORSE_E2E=1 bun test test/e2e/",
|
|
53
|
+
"coverage": "bun scripts/coverage-gate.ts",
|
|
54
|
+
"check": "tsc --noEmit && biome check . && bun scripts/coverage-gate.ts",
|
|
55
|
+
"prepublishOnly": "bun run check && bun run build"
|
|
51
56
|
},
|
|
52
57
|
"dependencies": {
|
|
53
|
-
"@arcadiasystems/morse-sdk": "^0.
|
|
58
|
+
"@arcadiasystems/morse-sdk": "^0.3.0",
|
|
54
59
|
"@mysten/seal": "1.1.3",
|
|
55
60
|
"@mysten/sui": "2.16.2",
|
|
56
61
|
"@mysten/walrus": "1.1.6",
|