-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "@blend-capital/blend-sdk",
"version": "2.2.0",
"description": "Javascript SDK for the Blend Protocol",
"type": "module",
"scripts": {
"build": "rm -rf dist/* && node ./scripts/build.mjs",
"test": "jest"
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"typings": "dist/types/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blend-capital/blend-sdk-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blend-capital/blend-sdk-js/issues"
},
"homepage": "https://github.com/blend-capital/blend-sdk-js#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"buffer": "6.0.3",
"@stellar/stellar-sdk": "13.0.0",
"follow-redirects": ">=1.15.6"
}
}