-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "@crocswap-libs/sdk",
"version": "2.0.0",
"description": "🛠🐊🛠 An SDK for building applications on top of CrocSwap",
"author": "Ben Wolski <ben@crocodilelabs.io>",
"repository": "https://github.com/CrocSwap/sdk.git",
"license": "MIT",
"keywords": [
"web3",
"DEX",
"sdk"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint .",
"test": "vitest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/index.ts",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build",
"copy-local": "cp -r dist ../ambient-ts-app/node_modules/@crocswap-libs/sdk/",
"build-local": "yarn build-all && yarn copy-local"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"ts-node": "^10.9.2",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"ethers": "^6.13.4"
}
}