@ar.io/sdk 3.23.0-alpha.1 → 3.23.0-alpha.3
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 +248 -248
- package/lib/cjs/cli/utils.js +16 -1
- package/lib/cjs/common/ant-registry.js +1 -1
- package/lib/cjs/common/loggers/winston.js +1 -1
- package/lib/cjs/common/marketplace.js +99 -8
- package/lib/cjs/utils/ao.js +1 -0
- package/lib/cjs/utils/json.js +1 -1
- package/lib/cjs/utils/processes.js +1 -1
- package/lib/cjs/version.js +1 -1
- package/lib/esm/cli/utils.js +16 -1
- package/lib/esm/common/ant-registry.js +1 -1
- package/lib/esm/common/loggers/winston.js +1 -1
- package/lib/esm/common/marketplace.js +99 -8
- package/lib/esm/utils/ao.js +1 -0
- package/lib/esm/utils/json.js +1 -1
- package/lib/esm/utils/processes.js +1 -1
- package/lib/esm/version.js +1 -1
- package/lib/types/common/marketplace.d.ts +81 -2
- package/lib/types/version.d.ts +1 -1
- package/package.json +10 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ar.io/sdk",
|
|
3
|
-
"version": "3.23.0-alpha.
|
|
3
|
+
"version": "3.23.0-alpha.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/ar-io/ar-io-sdk.git"
|
|
@@ -13,12 +13,7 @@
|
|
|
13
13
|
"node": ">=18"
|
|
14
14
|
},
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
|
-
"files": [
|
|
17
|
-
"lib",
|
|
18
|
-
"LICENSE",
|
|
19
|
-
"README.md",
|
|
20
|
-
"package.json"
|
|
21
|
-
],
|
|
16
|
+
"files": ["lib", "LICENSE", "README.md", "package.json"],
|
|
22
17
|
"publishConfig": {
|
|
23
18
|
"access": "public"
|
|
24
19
|
},
|
|
@@ -27,13 +22,7 @@
|
|
|
27
22
|
"email": "info@ar.io",
|
|
28
23
|
"website": "https://ar.io"
|
|
29
24
|
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"arweave",
|
|
32
|
-
"ar",
|
|
33
|
-
"blockchain",
|
|
34
|
-
"ar.io",
|
|
35
|
-
"ao"
|
|
36
|
-
],
|
|
25
|
+
"keywords": ["arweave", "ar", "blockchain", "ar.io", "ao"],
|
|
37
26
|
"exports": {
|
|
38
27
|
".": {
|
|
39
28
|
"types": "./lib/types/node/index.d.ts",
|
|
@@ -60,10 +49,10 @@
|
|
|
60
49
|
"build:cjs": "yarn tsc -p tsconfig.cjs.json && echo \"{\\\"type\\\": \\\"commonjs\\\"}\" > lib/cjs/package.json",
|
|
61
50
|
"build": "yarn clean && yarn build:web && yarn build:esm && yarn build:cjs",
|
|
62
51
|
"clean": "rimraf [ lib bundles coverage tests/contracts tests/wallets ]",
|
|
63
|
-
"lint": "
|
|
64
|
-
"lint:
|
|
65
|
-
"format": "
|
|
66
|
-
"format:
|
|
52
|
+
"lint:fix": "biome check --write --unsafe",
|
|
53
|
+
"lint:check": "biome check --unsafe",
|
|
54
|
+
"format:fix": "biome format --write",
|
|
55
|
+
"format:check": "biome format",
|
|
67
56
|
"test": "yarn test:unit && yarn test:e2e",
|
|
68
57
|
"test:cjs": "yarn build:cjs && yarn link && cd ./tests/e2e/cjs && yarn && yarn test",
|
|
69
58
|
"test:esm": "yarn build:esm && yarn link && cd ./tests/e2e/esm && yarn && yarn test",
|
|
@@ -81,6 +70,7 @@
|
|
|
81
70
|
"cli:local": "node lib/esm/cli/cli.js"
|
|
82
71
|
},
|
|
83
72
|
"devDependencies": {
|
|
73
|
+
"@biomejs/biome": "1.9.4",
|
|
84
74
|
"@commitlint/cli": "^17.1.2",
|
|
85
75
|
"@commitlint/config-conventional": "^17.1.0",
|
|
86
76
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
@@ -134,11 +124,7 @@
|
|
|
134
124
|
"prompts": "^2.4.2"
|
|
135
125
|
},
|
|
136
126
|
"lint-staged": {
|
|
137
|
-
"**/*.{ts,js,mjs,cjs,md,json}": [
|
|
138
|
-
|
|
139
|
-
],
|
|
140
|
-
"**/README.md": [
|
|
141
|
-
"markdown-toc-gen insert --max-depth 2"
|
|
142
|
-
]
|
|
127
|
+
"**/*.{ts,js,mjs,cjs,md,json}": ["biome format --write"],
|
|
128
|
+
"**/README.md": ["markdown-toc-gen insert --max-depth 2"]
|
|
143
129
|
}
|
|
144
130
|
}
|