-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@zenith-protocols/zenith-sdk",
"version": "2.0.0",
"description": "JavaScript SDK for Zenith Protocols - Trading and Vault protocols for Stellar/Soroban",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./trading": {
"require": "./dist/cjs/trading/index.js",
"import": "./dist/esm/trading/index.js",
"types": "./dist/types/trading/index.d.ts"
},
"./vault": {
"require": "./dist/cjs/vault/index.js",
"import": "./dist/esm/vault/index.js",
"types": "./dist/types/vault/index.d.ts"
},
"./core": {
"require": "./dist/cjs/core/index.js",
"import": "./dist/esm/core/index.js",
"types": "./dist/types/core/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build:cjs": "tsc -p scripts/tsconfig.cjs.json",
"build:esm": "tsc -p scripts/tsconfig.esm.json",
"build:types": "tsc -p scripts/tsconfig.types.json",
"build": "node scripts/build.mjs",
"test": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.2.0",
"buffer": "^6.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"tsx": "^4.20.5",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenith-protocols/zenith-sdk.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zenith-protocols/zenith-sdk/issues"
},
"homepage": "https://github.com/zenith-protocols/zenith-sdk#readme",
"publishConfig": {
"access": "public"
}
}