-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
{
"name": "bitbox-api-ts",
"version": "0.1.0",
"description": "A pure TypeScript library to interact with BitBox hardware wallets.",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CONTRIBUTING.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run --project unit",
"test:sim": "vitest run --project simulator",
"proto:sync": "cp ../bitbox02-firmware/messages/*.proto messages/",
"proto:gen": "buf generate",
"proto:check": "buf generate && git diff --exit-code -- src/proto/gen",
"sandbox:dev": "vite --config sandbox/vite.config.ts",
"sandbox:typecheck": "tsc -p sandbox/tsconfig.json",
"sandbox:build": "vite build --config sandbox/vite.config.ts"
},
"devDependencies": {
"@bufbuild/buf": "1.68.3",
"@bufbuild/protoc-gen-es": "2.11.0",
"@eslint/js": "10.0.1",
"@ethereumjs/rlp": "10.1.1",
"@noble/ciphers": "1.3.0",
"@noble/curves": "1.9.1",
"@noble/hashes": "1.8.0",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "25.6.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react-swc": "4.3.0",
"eslint": "10.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vite": "6.4.2",
"vitest": "4.1.5"
},
"keywords": [
"bitbox",
"bitbox02",
"hardware-wallet",
"ethereum",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/BitBoxSwiss/bitbox-api-ts"
},
"homepage": "https://bitbox.swiss/",
"dependencies": {
"@bufbuild/protobuf": "2.11.0"
},
"peerDependencies": {
"@noble/ciphers": "^1.3.0",
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.8.0"
}
}