forked from tetherto/wdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 KB
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
46
47
48
49
50
51
52
53
54
55
{
"name": "@tetherto/wdk",
"version": "1.0.0-beta.4",
"description": "A flexible manager that can register and manage multiple wallet instances for different blockchains dynamically.",
"keywords": [
"wdk",
"core"
],
"author": "Tether",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/tetherto/wdk-core.git"
},
"main": "index.js",
"type": "module",
"types": "./types",
"scripts": {
"build:types": "tsc",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"dependencies": {
"@tetherto/wdk-wallet": "^1.0.0-beta.4",
"bare-node-runtime": "^1.1.4"
},
"devDependencies": {
"cross-env": "7.0.3",
"jest": "30.1.3",
"standard": "17.1.2",
"typescript": "5.8.3"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"bare": "./bare.js",
"default": "./index.js"
},
"./package": {
"default": "./package.json"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"standard": {
"ignore": [
"bare.js",
"tests/**/*.js"
]
}
}