-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1016 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@biochain/bio-sdk",
"version": "0.2.0",
"description": "Bio Ecosystem SDK for MiniApps - window.bio provider",
"type": "module",
"module": "./src/index.ts",
"exports": {
".": {
"default": "./src/index.ts"
}
},
"files": [
"src"
],
"scripts": {
"build": "echo 'SDK has no build'",
"dev": "echo 'SDK has no dev'",
"typecheck": "tsc --noEmit",
"typecheck:run": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --passWithNoTests",
"test:storybook": "echo 'SDK has no storybook'",
"i18n:run": "echo 'SDK has no i18n'",
"theme:run": "echo 'SDK has no theme'"
},
"devDependencies": {
"jsdom": "^26.1.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.0"
},
"dependencies": {
"@biochain/android-focus-blur-guard": "workspace:*",
"zod": "^4.1.13"
},
"keywords": [
"bio",
"sdk",
"miniapp",
"wallet",
"web3"
],
"license": "MIT"
}