forked from xlink-network/xlink-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "@xlink-network/xlink-sdk",
"version": "0.2.0",
"description": "XLINK js SDK",
"packageManager": "[email protected]",
"keywords": [
"bitcoin",
"ethereum",
"stacks",
"XLINK",
"alexlab"
],
"repository": "github:xlink-network/xlink-sdk",
"author": "c4605 <[email protected]>",
"license": "MIT",
"files": [
"lib",
"src",
"generated"
],
"main": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./bitcoinHelpers": {
"import": "./lib/bitcoinHelpers.mjs",
"require": "./lib/bitcoinHelpers.js",
"types": "./lib/bitcoinHelpers.d.ts"
}
},
"scripts": {
"gen:stacksContract": "rm -rf generated/smartContract && mkdir -p generated/smartContract && tsx ./scripts/generateClarityTranscoders.ts",
"gen": "pnpm run gen:stacksContract",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"build": "pnpm run gen && rm -rf lib && tsup-node --sourcemap --dts -d lib --format cjs,esm src",
"prepare": "pnpm run build",
"test": "vitest --exclude lib"
},
"dependencies": {
"@c4/btc-utils": "^0.3.1",
"clarity-codegen": "^0.5.2"
},
"devDependencies": {
"@c4605/toolconfs": "^5.3.0",
"@stacks/network": "^6.13.0",
"@stacks/stacks-blockchain-api-types": "^7.9.0",
"@stacks/transactions": "^6.13.0",
"@types/big.js": "^6.2.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"big.js": "^6.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typedoc": "^0.26.6",
"typescript": "^5.4.5",
"viem": "^2.15.1",
"vitest": "^1.4.0"
},
"optionalDependencies": {
"@scure/btc-signer": "^1.2.2"
},
"peerDependencies": {
"@stacks/network": "^6.13.0",
"@stacks/transactions": "^6.13.0",
"big.js": "^6.2.1",
"viem": "^2.15.1"
}
}