forked from SaturnBTC/arch-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.53 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
{
"name": "@arch-network/arch-sdk",
"version": "0.0.27",
"description": "Arch SDK",
"author": "Arch Network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Arch-Network/arch-typescript-sdk.git"
},
"bugs": {
"url": "https://github.com/Arch-Network/arch-typescript-sdk/issues"
},
"homepage": "https://github.com/Arch-Network/arch-typescript-sdk#readme",
"keywords": [
"arch",
"arch-network",
"sdk",
"bitcoin",
"typescript"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"deploy": "npm i && npm run build && npm publish",
"lint": "tsc",
"test": "vitest",
"test:rpc": "npx tsx test/rpc-harness.ts"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.1.0",
"@types/ws": "^8.5.12",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"ws": "^8.18.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
"endOfLine": "lf"
},
"dependencies": {
"@noble/curves": "^1.5.0",
"@noble/hashes": "^1.4.0",
"@scure/base": "^1.1.7",
"borsh": "^2.0.0"
}
}