-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "@stellar/typescript-wallet-sdk-km",
"version": "1.8.0",
"engines": {
"node": ">=18"
},
"browser": "./lib/bundle_browser.js",
"main": "./lib/bundle.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@stellar/prettier-config": "^1.2.0",
"@stellar/tsconfig": "^1.0.2",
"@types/jest": "^29.5.14",
"@typescript-eslint/parser": "^7.1.1",
"@stellar/typescript-wallet-sdk": "*",
"babel-jest": "^29.7.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-mock-random": "^1.1.1",
"node-localstorage": "^3.0.5",
"npm-run-all": "^4.1.5",
"sinon": "^17.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@albedo-link/intent": "^0.12.0",
"@ledgerhq/hw-app-str": "^6.28.4",
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@stablelib/base64": "^2.0.1",
"@stablelib/utf8": "^2.0.1",
"@stellar/freighter-api": "^2.0.0",
"@stellar/stellar-sdk": "13.1.0",
"@trezor/connect-plugin-stellar": "^9.0.6",
"bignumber.js": "^9.1.2",
"scrypt-async": "^2.0.1",
"trezor-connect": "^8.2.12",
"tweetnacl": "^1.0.3"
},
"scripts": {
"test": "jest --watchAll",
"test:ci": "jest --ci",
"build:web": "webpack --config webpack.config.js",
"build:node": "webpack --env NODE=true --config webpack.config.js",
"build": "run-p build:web build:node"
}
}