-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "@samouraiwallet/electrum-client",
"version": "1.5.2",
"engines": {
"node": ">=18.6.0"
},
"description": "Electrum protocol client for Node.js",
"keywords": ["bitcoin", "electrum", "electrumx"],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "biome lint src/ test/",
"lint:fix": "biome lint --write src/ test/",
"pretty": "biome format --write src/ test/",
"typescript": "tsc --noEmit",
"build:clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.build.json",
"build": "npm run build:clean && npm run build:esm",
"prepack": "npm run lint && npm run typescript && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Dojo-Open-Source-Project/electrum-client.git"
},
"bugs": {
"url": "https://github.com/Dojo-Open-Source-Project/electrum-client/issues"
},
"author": "Katana Cryptographic Ltd.",
"license": "LGPL-3.0",
"homepage": "https://github.com/Dojo-Open-Source-Project/electrum-client",
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/node": "^18.19.53",
"@vitest/coverage-v8": "^2.1.1",
"typescript": "^5.0.4",
"vitest": "^2.1.1"
}
}