@solana-mobile/dapp-store-cli 0.1.3 → 0.1.4
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 +7 -7
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana-mobile/dapp-store-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -23,10 +23,6 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"clean": "shx mkdir -p lib && shx rm -rf lib",
|
|
28
|
-
"prebuild": "pnpm run clean"
|
|
29
|
-
},
|
|
30
26
|
"devDependencies": {
|
|
31
27
|
"@metaplex-foundation/js": "0.17.11",
|
|
32
28
|
"@types/commander": "^2.12.2",
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
"shx": "^0.3.4"
|
|
36
32
|
},
|
|
37
33
|
"dependencies": {
|
|
38
|
-
"@solana-mobile/dapp-store-publishing-tools": "
|
|
34
|
+
"@solana-mobile/dapp-store-publishing-tools": "0.1.3",
|
|
39
35
|
"@solana/web3.js": "1.68.0",
|
|
40
36
|
"ajv": "^8.11.0",
|
|
41
37
|
"commander": "^9.4.1",
|
|
@@ -45,5 +41,9 @@
|
|
|
45
41
|
"image-size": "^1.0.2",
|
|
46
42
|
"js-yaml": "^4.1.0",
|
|
47
43
|
"tweetnacl": "1.0.3"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"clean": "shx mkdir -p lib && shx rm -rf lib",
|
|
47
|
+
"prebuild": "pnpm run clean"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -37,7 +37,7 @@ function resolveBuildToolsPath(buildToolsPath: string | undefined) {
|
|
|
37
37
|
async function main() {
|
|
38
38
|
program
|
|
39
39
|
.name("dapp-store")
|
|
40
|
-
.version("0.1.
|
|
40
|
+
.version("0.1.4")
|
|
41
41
|
.description("CLI to assist with publishing to the Saga Dapp Store");
|
|
42
42
|
|
|
43
43
|
const createCommand = program
|