@polkadot-api/cli 0.14.14 → 0.14.15
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/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/package.json +12 -12
package/dist/main.js
CHANGED
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../package.json","../src/main.ts"],"sourcesContent":["{\n \"name\": \"@polkadot-api/cli\",\n \"version\": \"0.14.
|
|
1
|
+
{"version":3,"sources":["../package.json","../src/main.ts"],"sourcesContent":["{\n \"name\": \"@polkadot-api/cli\",\n \"version\": \"0.14.15\",\n \"author\": \"Victor Oliva (https://github.com/voliva)\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/polkadot-api/polkadot-api.git\"\n },\n \"license\": \"MIT\",\n \"sideEffects\": true,\n \"type\": \"module\",\n \"bin\": {\n \"papi\": \"./dist/main.js\",\n \"polkadot-api\": \"./dist/main.js\"\n },\n \"files\": [\n \"/dist\"\n ],\n \"exports\": {\n \".\": {\n \"node\": {\n \"import\": \"./dist/index.js\"\n },\n \"types\": \"./dist/index.d.ts\",\n \"module\": \"./dist/index.js\",\n \"import\": \"./dist/index.js\"\n }\n },\n \"scripts\": {\n \"build-core\": \"tsc --noEmit && tsup-node src/main.ts src/index.ts src/metadataWorker.ts --clean --out-dir dist --dts --sourcemap --platform node --format esm\",\n \"build\": \"pnpm build-core\",\n \"start\": \"pnpm build && node --enable-source-maps dist/main.js\",\n \"test\": \"echo 'no tests'\",\n \"lint\": \"prettier --check README.md \\\"src/**/*.{js,jsx,ts,tsx,json,md}\\\"\",\n \"format\": \"prettier --write README.md \\\"src/**/*.{js,jsx,ts,tsx,json,md}\\\"\",\n \"prepack\": \"pnpm run build\"\n },\n \"dependencies\": {\n \"@commander-js/extra-typings\": \"^14.0.0\",\n \"@polkadot-api/codegen\": \"workspace:*\",\n \"@polkadot-api/ink-contracts\": \"workspace:*\",\n \"@polkadot-api/json-rpc-provider\": \"workspace:*\",\n \"@polkadot-api/known-chains\": \"workspace:*\",\n \"@polkadot-api/legacy-provider\": \"workspace:*\",\n \"@polkadot-api/metadata-compatibility\": \"workspace:*\",\n \"@polkadot-api/observable-client\": \"workspace:*\",\n \"@polkadot-api/polkadot-sdk-compat\": \"workspace:*\",\n \"@polkadot-api/sm-provider\": \"workspace:*\",\n \"@polkadot-api/smoldot\": \"workspace:*\",\n \"@polkadot-api/substrate-bindings\": \"workspace:*\",\n \"@polkadot-api/substrate-client\": \"workspace:*\",\n \"@polkadot-api/utils\": \"workspace:*\",\n \"@polkadot-api/wasm-executor\": \"^0.2.1\",\n \"@polkadot-api/ws-provider\": \"workspace:*\",\n \"@types/node\": \"^24.5.2\",\n \"commander\": \"^14.0.1\",\n \"execa\": \"^9.6.0\",\n \"fs.promises.exists\": \"^1.1.4\",\n \"ora\": \"^9.0.0\",\n \"read-pkg\": \"^9.0.1\",\n \"rxjs\": \"^7.8.2\",\n \"tsc-prog\": \"^2.3.0\",\n \"tsup\": \"^8.5.0\",\n \"typescript\": \"^5.9.2\",\n \"write-package\": \"^7.2.0\"\n },\n \"devDependencies\": {\n \"@polkadot-api/json-rpc-provider\": \"workspace:*\",\n \"@swc/core\": \"^1.13.5\"\n }\n}\n","#!/usr/bin/env node\n\nimport { getCli } from \"./cli\"\nimport { add, generate, ink, remove, update } from \"./commands\"\nimport { version } from \"../package.json\"\n\nconst program = getCli({ add, generate, remove, update, ink, version })\nprogram.parse()\n"],"mappings":";;;;;;;;;;;AAEE,cAAW;;;ACIb,IAAM,UAAU,OAAO,EAAE,KAAK,UAAU,QAAQ,QAAQ,KAAK,QAAQ,CAAC;AACtE,QAAQ,MAAM;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polkadot-api/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.15",
|
|
4
4
|
"author": "Victor Oliva (https://github.com/voliva)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,31 +29,31 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@commander-js/extra-typings": "^14.0.0",
|
|
31
31
|
"@polkadot-api/wasm-executor": "^0.2.1",
|
|
32
|
-
"@types/node": "^24.
|
|
33
|
-
"commander": "^14.0.
|
|
32
|
+
"@types/node": "^24.5.2",
|
|
33
|
+
"commander": "^14.0.1",
|
|
34
34
|
"execa": "^9.6.0",
|
|
35
35
|
"fs.promises.exists": "^1.1.4",
|
|
36
|
-
"ora": "^
|
|
36
|
+
"ora": "^9.0.0",
|
|
37
37
|
"read-pkg": "^9.0.1",
|
|
38
38
|
"rxjs": "^7.8.2",
|
|
39
39
|
"tsc-prog": "^2.3.0",
|
|
40
40
|
"tsup": "^8.5.0",
|
|
41
41
|
"typescript": "^5.9.2",
|
|
42
|
-
"write-package": "^7.
|
|
42
|
+
"write-package": "^7.2.0",
|
|
43
43
|
"@polkadot-api/codegen": "0.18.4",
|
|
44
44
|
"@polkadot-api/ink-contracts": "0.3.11",
|
|
45
|
-
"@polkadot-api/
|
|
46
|
-
"@polkadot-api/
|
|
45
|
+
"@polkadot-api/known-chains": "0.9.10",
|
|
46
|
+
"@polkadot-api/legacy-provider": "0.3.1",
|
|
47
47
|
"@polkadot-api/json-rpc-provider": "0.0.4",
|
|
48
48
|
"@polkadot-api/metadata-compatibility": "0.3.6",
|
|
49
|
+
"@polkadot-api/observable-client": "0.15.1",
|
|
49
50
|
"@polkadot-api/polkadot-sdk-compat": "2.3.3",
|
|
50
|
-
"@polkadot-api/
|
|
51
|
-
"@polkadot-api/smoldot": "0.3.
|
|
52
|
-
"@polkadot-api/sm-provider": "0.1.10",
|
|
53
|
-
"@polkadot-api/substrate-client": "0.4.6",
|
|
51
|
+
"@polkadot-api/sm-provider": "0.1.11",
|
|
52
|
+
"@polkadot-api/smoldot": "0.3.14",
|
|
54
53
|
"@polkadot-api/substrate-bindings": "0.16.3",
|
|
54
|
+
"@polkadot-api/substrate-client": "0.4.7",
|
|
55
55
|
"@polkadot-api/utils": "0.2.0",
|
|
56
|
-
"@polkadot-api/ws-provider": "0.
|
|
56
|
+
"@polkadot-api/ws-provider": "0.6.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@swc/core": "^1.13.5",
|