-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "@sundaeswap/gummiworm",
"version": "0.0.80",
"description": "The official SundaeSwap GummiWorm SDK for clients.",
"repository": "git@github.com:SundaeSwap-finance/sundae-sdk.git",
"author": {
"name": "SundaeSwap Labs, Inc.",
"url": "https://sundae.fi/"
},
"bugs": {
"url": "https://github.com/SundaeSwap-finance/sundae-sdk/issues"
},
"homepage": "https://github.com/SundaeSwap-finance/sundae-sdk#readme",
"license": "MIT",
"private": false,
"sideEffects": false,
"publishConfig": {
"access": "restricted"
},
"files": [
"dist",
"src",
"package.json"
],
"type": "module",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"clean": "rm -rf ./dist",
"typecheck": "tsc --noEmit",
"compile:esm": "tsc --outDir dist/esm",
"compile:cjs": "tsc --outDir dist/cjs --module commonjs",
"compile:types": "tsc --outDir dist/types --emitDeclarationOnly --declarationMap --declaration",
"compile": "bun compile:cjs && bun compile:esm && bun compile:types",
"build": "bun clean && bun compile",
"watch": "bun compile:cjs && bun compile:types && bun compile:esm --watch",
"docs": "docgen generate --typedoc-options ./typedoc.json",
"docs:ci": "bun docs --unsafe"
},
"devDependencies": {
"@sundaeswap/core": "workspace:*"
},
"peerDependencies": {
"@blaze-cardano/sdk": "^0.2.12",
"@sundaeswap/asset": "^1.0.6",
"@sundaeswap/core": "^1.3.26",
"lucid-cardano": "0.10.7"
},
"dependencies": {
"graphql": "^16.8.1",
"graphql-request": "^6.1.0"
}
}