-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 1001 Bytes
/
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
{
"name": "@viaprotocol/router-sdk",
"version": "1.0.7",
"dependencies": {
"@types/ws": "^8.5.3",
"axios": "^0.26.1",
"isomorphic-ws": "^5.0.0",
"ws": "^8.8.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "tsc --build --clean",
"watch": "tsc -w -p ./tsconfig.json",
"build": "yarn clean && tsc --project ./tsconfig.json",
"prepare": "yarn clean && yarn build",
"lint": "eslint --ext .tsx --ext .ts ./src",
"lint:fix": "eslint --ext .tsx --ext .ts ./src --fix",
"prettier:fix": "prettier --write ./src/."
},
"repository": {
"type": "git",
"url": "git+https://github.com/viaprotocol/via-sdk-js.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.6.0",
"ts-node": "^10.8.1",
"typescript": "^4.6.2"
}
}