forked from IndigoProtocol/dexter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "@indigo-labs/dexter",
"version": "4.0.1",
"license": "MIT",
"author": "Zachary Sluder",
"keywords": [
"dexter",
"Cardano",
"DEX"
],
"description": "Customizable Typescript SDK for interacting with Cardano DEXs",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "npm run build",
"prepublishOnly": "npm run test"
},
"dependencies": {
"@types/crypto-js": "^4.1.1",
"axios": "^0.26.1",
"axios-retry": "^3.5.1",
"bottleneck": "^2.19.5",
"crypto-js": "^4.1.1",
"lucid-cardano": "^0.8.7"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.3"
}
}