-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "@ledgerhq/wallet-api-simulator",
"version": "2.1.0",
"license": "MIT",
"main": "lib/index.js",
"module": "lib-es/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"/lib-es"
],
"scripts": {
"format:check": "prettier --check \"src\"",
"format:fix": "prettier --write \"src\"",
"lint": "eslint --cache --ext .ts \"src\"",
"lint:fix": "eslint --cache --fix --ext .ts \"src\"",
"dev": "tsc -p prod.tsconfig.json --watch",
"build": "rm -rf lib/* lib-es/* && tsc -p prod.tsconfig.json && tsc -p prod-esm.tsconfig.json",
"test": "jest"
},
"devDependencies": {
"@ledgerhq/errors": "^6.27.0",
"@ledgerhq/jest-shared-config": "workspace:*",
"@types/jest": "^29.5.12",
"@types/node": "^24.10.0",
"@types/ws": "^8.5.10",
"bignumber.js": "^9.1.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@ledgerhq/hw-transport": "^6.31.13",
"@ledgerhq/wallet-api-client": "workspace:*",
"@ledgerhq/wallet-api-core": "workspace:*",
"@ledgerhq/wallet-api-server": "workspace:*",
"ws": "^8.17.1"
}
}