-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.42 KB
/
package.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@btc-vision/op-engine",
"description": "OPNet Storage Engine",
"version": "0.0.1",
"main": "./index.js",
"types": "./index.d.ts",
"type": "commonjs",
"homepage": "https://opnet.org/",
"napi": {
"name": "op-engine",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-musl",
"universal-apple-darwin"
]
}
},
"author": "ORANGE PILLS INC",
"license": "MIT",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@babel/core": "^7.26.8",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.8",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@jest/globals": "^29.7.0",
"@napi-rs/cli": "^2.18.4",
"@swc-node/register": "^1.10.9",
"@types/node": "^22.13.1",
"ava": "^6.2.0",
"babel-jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
},
"timeout": "10m",
"verbose": true,
"babel": true,
"nodeArguments": [
"--trace-deprecation",
"--napi-modules",
"--import",
"@swc-node/register/esm-register"
]
},
"engines": {
"node": ">= 20"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava --verbose",
"universal": "napi universal",
"version": "napi version",
"coverage": "cargo llvm-cov clean --workspace && cargo llvm-cov --workspace --open"
},
"repository": {
"type": "git",
"url": "https://github.com/btc-vision/op-engine"
},
"dependencies": {
"@btc-vision/bitcoin": "^6.3.6",
"@btc-vision/transaction": "^1.2.11",
"jest": "^29.7.0",
"sha.js": "^2.4.11",
"sha256": "^0.2.0",
"tsx": "^4.19.2"
}
}