This repository was archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.42 KB
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
{
"name": "@dahlia-labs/mobius-config-registry",
"version": "0.0.18",
"description": "Configuration for the Mobius protocol",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mobiusAMM/mobius-config-registry.git"
},
"keywords": [
"celo",
"blockchain",
"mobius"
],
"author": "Kyle Scott <kyle@dahlia.finance>",
"license": "AGPL-3.0",
"packageManager": "yarn@3.2.3",
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@saberhq/eslint-config": "^2.0.5",
"@saberhq/tsconfig": "^2.0.5",
"@typechain/ethers-v5": "^10.1.0",
"@types/eslint": "^8.4.6",
"@types/lodash": "^4.14.185",
"@types/node": "18.7.18",
"@types/prettier": "^2.7.0",
"@yarnpkg/doctor": "^4.0.0-rc.18",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"ethers": "^5.7.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "10.9.1",
"tslib": "^2.4.0",
"typechain": "^8.1.0",
"typedoc": "^0.23.14",
"typescript": "4.7.3"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/",
"src/"
],
"dependencies": {
"@dahlia-labs/celo-contrib": "^0.8.1",
"@dahlia-labs/celo-tokens": "^0.8.1",
"@dahlia-labs/stableswap-sdk": "^0.8.1",
"@dahlia-labs/token-utils": "^0.8.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"tiny-invariant": "^1.2.0"
},
"scripts": {
"build": "tsc && tsc --project tsconfig.cjs.json",
"clean": "rm -fr dist/",
"typecheck": "tsc --project tsconfig.cjs.json",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts",
"prepare": "husky install",
"doctor:packages": "yarn doctor packages/"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/MobiusAmm/mobius-config-registry#readme"
}