@bananalink-sdk/protocol 1.2.7 → 1.2.8
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/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bananalink-sdk/protocol",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "Core protocol definitions for BananaLink. Provides TypeScript types, Zod validation schemas, cryptographic utilities, and shared constants for wallet connections.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -101,32 +101,22 @@
|
|
|
101
101
|
"publishConfig": {
|
|
102
102
|
"access": "restricted"
|
|
103
103
|
},
|
|
104
|
-
"scripts": {
|
|
105
|
-
"build": "tsup",
|
|
106
|
-
"clean": "rm -rf dist node_modules",
|
|
107
|
-
"dev": "tsup --watch",
|
|
108
|
-
"lint": "eslint src --ext .ts",
|
|
109
|
-
"test": "vitest run",
|
|
110
|
-
"test:watch": "vitest",
|
|
111
|
-
"test:coverage": "vitest run --coverage",
|
|
112
|
-
"typecheck": "tsc --noEmit"
|
|
113
|
-
},
|
|
114
104
|
"dependencies": {
|
|
115
|
-
"@bananalink-sdk/logger": "workspace:*",
|
|
116
105
|
"@noble/ciphers": "^2.0.0",
|
|
117
106
|
"@noble/curves": "^2.0.0",
|
|
118
107
|
"@noble/hashes": "^2.0.0",
|
|
119
|
-
"zod": "^3.25.67"
|
|
108
|
+
"zod": "^3.25.67",
|
|
109
|
+
"@bananalink-sdk/logger": "0.2.3"
|
|
120
110
|
},
|
|
121
111
|
"devDependencies": {
|
|
122
|
-
"@bananalink-sdk/eslint-config": "workspace:*",
|
|
123
|
-
"@bananalink-sdk/typescript-config": "workspace:*",
|
|
124
112
|
"@types/node": "^24.1.0",
|
|
125
113
|
"@vitest/coverage-v8": "^3.2.4",
|
|
126
114
|
"eslint": "^9.29.0",
|
|
127
115
|
"tsup": "^8.5.0",
|
|
128
116
|
"typescript": "^5.8.3",
|
|
129
|
-
"vitest": "^3.2.4"
|
|
117
|
+
"vitest": "^3.2.4",
|
|
118
|
+
"@bananalink-sdk/eslint-config": "0.0.0",
|
|
119
|
+
"@bananalink-sdk/typescript-config": "0.0.0"
|
|
130
120
|
},
|
|
131
121
|
"peerDependencies": {
|
|
132
122
|
"react-native-quick-crypto": "^0.7.0"
|
|
@@ -136,5 +126,14 @@
|
|
|
136
126
|
"optional": true
|
|
137
127
|
}
|
|
138
128
|
},
|
|
139
|
-
"
|
|
140
|
-
|
|
129
|
+
"scripts": {
|
|
130
|
+
"build": "tsup",
|
|
131
|
+
"clean": "rm -rf dist node_modules",
|
|
132
|
+
"dev": "tsup --watch",
|
|
133
|
+
"lint": "eslint src --ext .ts",
|
|
134
|
+
"test": "vitest run",
|
|
135
|
+
"test:watch": "vitest",
|
|
136
|
+
"test:coverage": "vitest run --coverage",
|
|
137
|
+
"typecheck": "tsc --noEmit"
|
|
138
|
+
}
|
|
139
|
+
}
|