@polkadot-api/cli 0.16.1 → 0.16.2
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 +7 -7
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.16.
|
|
1
|
+
{"version":3,"sources":["../package.json","../src/main.ts"],"sourcesContent":["{\n \"name\": \"@polkadot-api/cli\",\n \"version\": \"0.16.2\",\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.2\",\n \"@polkadot-api/ws-provider\": \"workspace:*\",\n \"@types/node\": \"^24.10.1\",\n \"commander\": \"^14.0.2\",\n \"execa\": \"^9.6.0\",\n \"fs.promises.exists\": \"^1.1.4\",\n \"ora\": \"^9.0.0\",\n \"read-pkg\": \"^10.0.0\",\n \"rxjs\": \"^7.8.2\",\n \"tsc-prog\": \"^2.3.0\",\n \"tsup\": \"8.5.0\",\n \"typescript\": \"^5.9.3\",\n \"write-package\": \"^7.2.0\"\n },\n \"devDependencies\": {\n \"@polkadot-api/json-rpc-provider\": \"workspace:*\",\n \"@swc/core\": \"^1.15.3\"\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.16.
|
|
3
|
+
"version": "0.16.2",
|
|
4
4
|
"author": "Victor Oliva (https://github.com/voliva)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"tsup": "8.5.0",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
42
|
"write-package": "^7.2.0",
|
|
43
|
-
"@polkadot-api/codegen": "0.20.0",
|
|
44
|
-
"@polkadot-api/known-chains": "0.9.15",
|
|
45
43
|
"@polkadot-api/ink-contracts": "0.4.3",
|
|
44
|
+
"@polkadot-api/known-chains": "0.9.15",
|
|
46
45
|
"@polkadot-api/legacy-provider": "0.3.6",
|
|
47
46
|
"@polkadot-api/json-rpc-provider": "0.0.4",
|
|
47
|
+
"@polkadot-api/codegen": "0.20.0",
|
|
48
|
+
"@polkadot-api/observable-client": "0.16.6",
|
|
48
49
|
"@polkadot-api/metadata-compatibility": "0.4.1",
|
|
49
50
|
"@polkadot-api/polkadot-sdk-compat": "2.3.3",
|
|
50
|
-
"@polkadot-api/
|
|
51
|
+
"@polkadot-api/sm-provider": "0.1.14",
|
|
52
|
+
"@polkadot-api/substrate-client": "0.4.7",
|
|
51
53
|
"@polkadot-api/smoldot": "0.3.14",
|
|
52
54
|
"@polkadot-api/substrate-bindings": "0.16.5",
|
|
53
|
-
"@polkadot-api/substrate-client": "0.4.7",
|
|
54
|
-
"@polkadot-api/utils": "0.2.0",
|
|
55
55
|
"@polkadot-api/ws-provider": "0.7.4",
|
|
56
|
-
"@polkadot-api/
|
|
56
|
+
"@polkadot-api/utils": "0.2.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@swc/core": "^1.15.3",
|