-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
99 lines (99 loc) · 2.7 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
97
98
99
{
"name": "@minswap/sdk",
"version": "0.3.4",
"description": "Query Minswap data and build transactions",
"type": "module",
"types": "./build/index.d.ts",
"engines": {
"node": ">=20.17 <21"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.es.js"
}
},
"files": [
"build"
],
"scripts": {
"build": "rimraf build && rollup -c rollup.config.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest && tsc",
"lint": "eslint src",
"format": "prettier --write **/*.ts && eslint src --fix",
"check-format": "prettier --check **/*.ts && eslint src",
"exec": "tsx",
"example": "tsx examples/example.ts",
"prisma:dbpull": "prisma db pull",
"prisma:generate": "prisma generate",
"postinstall": "prisma generate",
"syncer:start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/syncer/main.ts"
},
"keywords": [
"minswap",
"cardano",
"blockfrost",
"dex",
"blockchain",
"lucid"
],
"author": "Minswap Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minswap/sdk.git"
},
"bugs": {
"url": "https://github.com/minswap/sdk/issues"
},
"homepage": "https://github.com/minswap/sdk#readme",
"dependencies": {
"@blockfrost/blockfrost-js": "^5.5.0",
"@cardano-ogmios/client": "^6.5.0",
"@cardano-ogmios/schema": "^6.5.0",
"@minswap/lucid-cardano": "0.10.10-minswap.4",
"@minswap/tiny-invariant": "^1.2.0",
"big.js": "^6.2.1",
"bignumber.js": "^9.1.2",
"exponential-backoff": "^3.1.1",
"ioredis": "^5.4.1",
"remeda": "^2.12.1",
"sha3": "^2.1.4"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@prisma/client": "^5.19.1",
"@types/big.js": "^6.2.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1.0.4",
"@types/node": "^20.9.2",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"jest": "^29.7.0",
"json-bigint": "^1.0.0",
"prettier": "3.3.3",
"prisma": "^5.19.1",
"rimraf": "^6.0.1",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.21.2"
},
"packageManager": "[email protected]",
"prisma": {
"schema": "./src/syncer/postgres/prisma/schema.prisma"
}
}