@parity/dotns-cli 0.5.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/README.md +406 -0
- package/dist/cli.js +268050 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@parity/dotns-cli",
|
|
3
|
+
"module": "index.ts",
|
|
4
|
+
"version": "0.5.2",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"packageManager": "bun@1.2.6",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "bun run src/cli/index.ts",
|
|
12
|
+
"lint": "bunx eslint .",
|
|
13
|
+
"lint:fix": "bunx eslint . --fix",
|
|
14
|
+
"format": "bunx prettier --check .",
|
|
15
|
+
"format:fix": "bunx prettier --write \"**/*.{js,ts,json,md}\" \"!abis/**\"",
|
|
16
|
+
"typecheck": "bunx tsc --noEmit",
|
|
17
|
+
"test": "bun test tests/",
|
|
18
|
+
"test:unit": "bun test tests/unit/",
|
|
19
|
+
"test:integration": "bun test tests/integration/",
|
|
20
|
+
"build": "bun build src/cli/index.ts --outfile dist/cli.tmp.js --target node --format esm && echo '#!/usr/bin/env node' | cat - dist/cli.tmp.js > dist/cli.js && rm dist/cli.tmp.js && chmod +x dist/cli.js",
|
|
21
|
+
"prepublishOnly": "bun run build",
|
|
22
|
+
"prepare": "bunx papi generate"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"bun": ">=1.2.6"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"bin": {
|
|
31
|
+
"dotns": "./dist/cli.js"
|
|
32
|
+
},
|
|
33
|
+
"exports": {
|
|
34
|
+
".": "./dist/cli.js"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/bun": "^1.2.6",
|
|
38
|
+
"@types/ora": "^3.2.0",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
|
+
"eslint-config-prettier": "^9.0.0",
|
|
43
|
+
"prettier": "^3.3.0",
|
|
44
|
+
"typescript": "^5.0.0"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@chainsafe/libp2p-noise": "^17.0.0",
|
|
48
|
+
"@chainsafe/libp2p-yamux": "^8.0.1",
|
|
49
|
+
"@ensdomains/content-hash": "^3.0.0",
|
|
50
|
+
"@helia/unixfs": "^7.1.0",
|
|
51
|
+
"@ipld/dag-pb": "^4.1.5",
|
|
52
|
+
"@libp2p/websockets": "^10.1.6",
|
|
53
|
+
"@multiformats/blake2": "^2.0.2",
|
|
54
|
+
"@multiformats/multiaddr": "^13.0.1",
|
|
55
|
+
"@noble/hashes": "^2.0.1",
|
|
56
|
+
"@polkadot-api/descriptors": "file:.papi/descriptors",
|
|
57
|
+
"@polkadot-labs/hdkd": "^0.0.26",
|
|
58
|
+
"@polkadot-labs/hdkd-helpers": "^0.0.27",
|
|
59
|
+
"@polkadot/keyring": "^14.0.1",
|
|
60
|
+
"@polkadot/util-crypto": "^14.0.1",
|
|
61
|
+
"chalk": "^5.6.2",
|
|
62
|
+
"commander": "^14.0.2",
|
|
63
|
+
"helia": "^6.0.22",
|
|
64
|
+
"ipfs-unixfs": "^12.0.0",
|
|
65
|
+
"ipfs-unixfs-importer": "^16.0.2",
|
|
66
|
+
"multiformats": "^13.4.2",
|
|
67
|
+
"ora": "^9.0.0",
|
|
68
|
+
"polkadot-api": "^1.23.1",
|
|
69
|
+
"viem": "^2.43.1"
|
|
70
|
+
}
|
|
71
|
+
}
|