-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 879 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 879 Bytes
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
{
"name": "@stellar-broker/client",
"version": "0.6.14",
"description": "Client library for StellarBroker service",
"author": "team@stellar.broker",
"homepage": "https://stellar.broker",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "webpack --mode=production --config webpack.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-broker/client.git"
},
"peerDependencies": {
"@stellar/stellar-sdk": ">=13"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"babel-loader": "^9.2.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"ws": "^8.17.1"
}
}