-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "@sundaeswap/yield-farming",
"version": "1.1.50",
"description": "The official SundaeSwap Yield Farming SDK for clients.",
"repository": "[email protected]: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": "public"
},
"files": [
"dist",
"src",
"package.json"
],
"type": "module",
"main": "dist/cjs/exports/index.js",
"types": "dist/types/exports/index.d.ts",
"typesVersions": {
"*": {
"lucid": [
"./dist/types/exports/lucid.d.ts"
],
"blaze": [
"./dist/types/exports/blaze.d.ts"
]
}
},
"exports": {
".": {
"import": "./dist/esm/exports/index.js",
"require": "./dist/cjs/exports/index.js",
"types": "./dist/types/exports/index.d.ts"
},
"./lucid": {
"import": "./dist/esm/exports/lucid.js",
"require": "./dist/cjs/exports/lucid.js",
"types": "./dist/types/exports/lucid.d.ts"
},
"./blaze": {
"import": "./dist/esm/exports/blaze.js",
"require": "./dist/cjs/exports/blaze.js",
"types": "./dist/types/exports/blaze.d.ts"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "rm -rf ./dist",
"build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts,.tsx' --out-dir './dist/esm' --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts,.tsx' --out-dir 'dist/cjs' --source-maps",
"types": "tsc --project ./tsconfig.build.json",
"build": "bun clean && bun types && bun build:esm && bun build:cjs && bun set-cjs",
"watch": "bun clean && bun run build && bun build:esm --watch",
"set-cjs": "echo '{ \"type\": \"commonjs\" }' > ./dist/cjs/package.json",
"docs": "docgen generate --typedoc-options ./typedoc.json",
"docs:ci": "bun docs --unsafe"
},
"devDependencies": {
"@blaze-cardano/emulator": "^0.3.14",
"@sundaeswap/core": "workspace:*"
},
"peerDependencies": {
"@blaze-cardano/sdk": "^0.2.20",
"@sundaeswap/asset": "^1.0.6",
"@sundaeswap/core": "^1.3.26",
"lucid-cardano": "0.10.7"
}
}