-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "bdk",
"version": "0.0.0",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "bdk",
"triples": {}
},
"license": "MIT",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@napi-rs/cli": "^2.14.7",
"ava": "^5.1.1",
"typescript": "^4.9.5"
},
"ava": {
"timeout": "3m",
"typescript": {
"compile": "tsc",
"rewritePaths": {
"__test__/": "dist/"
}
}
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "yarn@3.4.1",
"repository": "https://github.com/mcroad/node-bdk",
"description": "BDK bindings for node",
"optionalDependencies": {
"bdk-win32-x64-msvc": "0.0.0",
"bdk-darwin-x64": "0.0.0",
"bdk-linux-x64-gnu": "0.0.0"
}
}