This repository was archived by the owner on Jun 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.63 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@bitescrow/client-sdk",
"version": "0.15.8",
"description": "Development SDK for the BitEscrow API.",
"author": "Christopher Scott",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitescrow/escrow-sdk.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"unpkg": "./dist/script.js",
"files": [
"README.md",
"LICENSE",
"dist",
"src"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./client/lib": {
"import": "./dist/client/lib/index.js",
"types": "./dist/client/lib/index.d.ts"
},
"./client/schema": {
"import": "./dist/client/schema/index.js",
"types": "./dist/client/schema/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./core/lib": {
"import": "./dist/core/lib/index.js",
"types": "./dist/core/lib/index.d.ts"
},
"./core/schema": {
"import": "./dist/core/schema/index.js",
"types": "./dist/core/schema/index.d.ts"
},
"./cvm": {
"import": "./dist/cvm/index.js",
"types": "./dist/cvm/index.d.ts"
},
"./account": {
"import": "./dist/core/module/account/index.js",
"types": "./dist/core/module/account/index.d.ts"
},
"./contract": {
"import": "./dist/core/module/contract/index.js",
"types": "./dist/core/module/contract/index.d.ts"
},
"./deposit": {
"import": "./dist/core/module/deposit/index.js",
"types": "./dist/core/module/deposit/index.d.ts"
},
"./machine": {
"import": "./dist/core/module/machine/index.js",
"types": "./dist/core/module/machine/index.d.ts"
},
"./util": {
"import": "./dist/util/index.js",
"types": "./dist/util/index.d.ts"
},
"./verify": {
"import": "./dist/core/validation/index.js",
"types": "./dist/core/validation/index.d.ts"
},
"./witness": {
"import": "./dist/core/module/witness/index.js",
"types": "./dist/core/module/witness/index.d.ts"
}
},
"scripts": {
"build": "./scripts/build.sh",
"demo": "./demo/run.sh",
"demo:vm": "yarn load demo/vm/eval.ts",
"lint": "eslint src/**/*.ts",
"load": "tsx --tsconfig ./test/tsconfig.json",
"load:regtest": "NETWORK=regtest yarn load",
"load:mutiny": "NETWORK=mutiny yarn load",
"load:signet": "NETWORK=signet yarn load",
"load:testnet": "NETWORK=testnet yarn load",
"release": "yarn lint && yarn test && yarn build",
"scratch": "yarn load test/scratch.ts",
"test": "yarn tsc && yarn load test/tape.ts | tap-spec"
},
"devDependencies": {
"@cmdcode/core-cmd": "1.6.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.5.0",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"rollup": "^4.21.1",
"tap-spec": "^5.0.0",
"tape": "^5.8.1",
"tslib": "^2.7.0",
"tsx": "^4.18.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@cmdcode/buff": "2.2.5",
"@cmdcode/crypto-tools": "2.7.6",
"@cmdcode/musig2": "2.4.3",
"@cmdcode/signer": "1.4.7",
"@scrow/tapscript": "2.2.4",
"zod": "^3.23.8"
}
}