forked from lifinance/types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.67 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@lifi/types",
"version": "9.3.1",
"description": "Types for the LI.FI stack",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/index.js"
},
"scripts": {
"watch": "tsc -w -p ./tsconfig.json",
"build": "node tools/cleanup types && tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node tools/packagejson name @lifi/types",
"pre-commit": "lint-staged",
"pre-push": "yarn build && yarn test",
"lint:fix": "eslint --ext .tsx --ext .ts ./src --fix",
"prettier:fix": "prettier --write ./src/.",
"use:npmReadme": "mv 'README.md' 'git.README.md' && mv 'npm.README.md' 'README.md'",
"use:gitReadme": "mv 'README.md' 'npm.README.md' && mv 'git.README.md' 'README.md'",
"prepublishOnly": "run-s build use:npmReadme && pinst --enable",
"postpublish": "npm run use:gitReadme && pinst --enable",
"prepare": "husky install",
"release": "standard-version"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn run lint:fix",
"yarn run prettier:fix"
]
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": "LI.FI <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"sdk",
"ethereum",
"dapp",
"bridge",
"swap",
"web3",
"lifi",
"ethers",
"cross-chain",
"defi",
"web3-react",
"cross-chain-applications",
"cross-chain-bridge",
"bridge-aggregation",
"multi-chain",
"metamask"
],
"homepage": "https://github.com/lifinance/types",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lifinance/types.git"
},
"bugs": {
"url": "https://github.com/lifinance/types"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"axios": "^1.4.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.8.7",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"directories": {
"test": "test"
},
"packageManager": "[email protected]"
}