@voidaisdk/bridge-sdk 0.0.2 → 0.0.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 +125 -109
- package/dist/api/client.d.ts +4 -3
- package/dist/api/client.js +22 -12
- package/dist/core/bridge.js +4 -1
- package/dist/index.js +1 -1
- package/dist/wallet/bittensor.js +2 -1
- package/dist/wallet/ethereum.js +2 -2
- package/dist/wallet/solana.js +1 -1
- package/dist-browser/voidai-sdk.js +1 -1
- package/package.json +11 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voidaisdk/bridge-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "TypeScript SDK for VoidAI Bridge - Blockchain wallet authentication and API integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"browser": "dist-browser/voidai-sdk.js",
|
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
"build:browser": "webpack",
|
|
16
16
|
"build:all": "npm run build && npm run build:browser",
|
|
17
17
|
"test": "jest",
|
|
18
|
-
"lint": "eslint
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"lint:fix": "eslint . --fix",
|
|
20
|
+
"format": "prettier --write .",
|
|
21
|
+
"type-check": "tsc --noEmit",
|
|
22
|
+
"check:node": "node -e \"const [major]=process.versions.node.split('.'); if (Number(major)!==22){console.error('Node 22.x is required'); process.exit(1);}\"",
|
|
19
23
|
"prepare": "npm run build:all",
|
|
20
24
|
"prepublishOnly": "npm test"
|
|
21
25
|
},
|
|
@@ -34,16 +38,19 @@
|
|
|
34
38
|
"license": "MIT",
|
|
35
39
|
"repository": {
|
|
36
40
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/v0idai/voidai-sdk"
|
|
41
|
+
"url": "git+https://github.com/v0idai/voidai-sdk.git"
|
|
38
42
|
},
|
|
39
43
|
"devDependencies": {
|
|
44
|
+
"@eslint/js": "^9.14.0",
|
|
40
45
|
"@types/jest": "^29.5.12",
|
|
41
46
|
"@types/node": "^20.11.24",
|
|
42
|
-
"eslint": "^
|
|
47
|
+
"eslint": "^9.14.0",
|
|
43
48
|
"jest": "^29.7.0",
|
|
49
|
+
"prettier": "^3.3.3",
|
|
44
50
|
"ts-jest": "^29.1.2",
|
|
45
51
|
"ts-loader": "^9.5.4",
|
|
46
52
|
"typescript": "^5.3.3",
|
|
53
|
+
"typescript-eslint": "^8.0.0",
|
|
47
54
|
"webpack": "^5.103.0",
|
|
48
55
|
"webpack-cli": "^6.0.1"
|
|
49
56
|
},
|