This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
96 lines (96 loc) · 2.79 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@stellar/wallet-sdk",
"version": "0.11.2",
"description": "Libraries to help you write Stellar-enabled wallets in Javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:stellar/js-stellar-wallets.git",
"author": "Stellar Development Foundation <[email protected]>",
"license": "Apache-2.0",
"prettier": "@stellar/prettier-config",
"peerDependencies": {
"@stellar/stellar-sdk": "^11.1.0",
"bignumber.js": "*"
},
"scripts": {
"prepare": "yarn build ; yarn build:commonjs",
"build": "tsc -p tsconfig.json",
"build:commonjs": "webpack --mode production",
"dev": "tsc-watch --project tsconfig.json --onSuccess 'yarn lint'",
"docs": "typedoc",
"lint": "tslint --fix --format verbose --project tsconfig.json",
"lintAndTest": "yarn lint && jest",
"prettier": "prettier --write '**/*.{js,ts,md}'",
"test": "jest --watch",
"test:ci": "jest"
},
"husky": {
"hooks": {
"pre-commit": "concurrently 'lint-staged' 'yarn build'"
}
},
"lint-staged": {
"concurrent": true,
"linters": {
"**/*.{js,md}": [
"prettier --write",
"git add"
],
"**/*.ts": [
"prettier --write",
"tslint --fix --format verbose",
"git add"
]
}
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@stellar/prettier-config": "^1.0.1",
"@stellar/tsconfig": "^1.0.2",
"@stellar/tslint-config": "^1.0.4",
"@types/ledgerhq__hw-transport-u2f": "^4.21.1",
"@types/node-localstorage": "^1.3.3",
"@types/sinon": "^7.0.11",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"bignumber.js": "^8.1.1",
"concurrently": "^4.1.1",
"husky": "^1.3.1",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-random": "^1.1.1",
"lint-staged": "^8.1.5",
"node-localstorage": "^3.0.5",
"path": "^0.12.7",
"prettier": "^1.17.0",
"regenerator-runtime": "^0.14.0",
"sinon": "^7.3.1",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"tsc-watch": "^2.1.2",
"tslint": "^5.14.0",
"typedoc": "^0.14.2",
"typescript": "^4.9.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@albedo-link/intent": "^0.9.2",
"@ledgerhq/hw-app-str": "^5.28.0",
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@stellar/freighter-api": "^1.7.1",
"@stellar/stellar-sdk": "^11.1.0",
"@types/jest": "^24.0.11",
"change-case": "^3.1.0",
"lodash": "^4.17.21",
"query-string": "^6.4.2",
"scrypt-async": "^2.0.1",
"trezor-connect": "^8.2.12",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
}
}