-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "rango-types",
"version": "0.1.75",
"description": "Rango Exchange Types",
"type": "module",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./mainApi": {
"types": "./lib/api/main/index.d.ts",
"default": "./lib/api/main/index.js"
},
"./basicApi": {
"types": "./lib/api/basic/index.d.ts",
"default": "./lib/api/basic/index.js"
}
},
"repository": "https://github.com/rango-exchange/rango-types",
"homepage": "https://github.com/rango-exchange/rango-types",
"bugs": {
"url": "https://github.com/rango-exchange/rango-types/issues"
},
"scripts": {
"clean": "rm -rf lib",
"test": "jest --config jestconfig.json",
"build": "tsc",
"lint": "eslint */**/*.{js,ts} --quiet --fix",
"semantic-release": "semantic-release",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"keywords": [
"Rango Exchange",
"SDK",
"Cross-Chain",
"Multi-Chain"
],
"files": [
"lib/**/*",
"src"
],
"author": "rango.exchange",
"license": "GPL-3.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {},
"publishConfig": {
"access": "public",
"branches": [
"main"
]
}
}