forked from minswap/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "@minswap/blockfrost-adapter",
"version": "0.0.4",
"description": "Query Minswap data from Blockfrost",
"main": "./build/index.js",
"module": "./build/index.es.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rimraf build && rollup -c rollup.config.js",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"keywords": [
"minswap",
"cardano",
"blockfrost",
"dex",
"blockchain",
"ape"
],
"author": "Minswap Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minswap/blockfrost-adapter.git"
},
"bugs": {
"url": "https://github.com/minswap/blockfrost-adapter/issues"
},
"homepage": "https://github.com/minswap/blockfrost-adapter#readme",
"dependencies": {
"@blockfrost/blockfrost-js": "^4.1.0",
"@minswap/tiny-invariant": "^1.2.0",
"big.js": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/big.js": "^6.1.3",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^28.0.1",
"esbuild": "^0.14.38",
"eslint": "^8.13.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fast-check": "^2.24.0",
"jest": "^28.0.1",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}