-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "3commas-typescript",
"version": "1.3.6",
"description": "TypeScript 3Commas API client",
"repository": {
"type": "git",
"url": "https://github.com/kirosc/3commas-typescript"
},
"bugs": {
"url": "https://github.com/kirosc/3commas-typescript/issues"
},
"homepage": "https://github.com/kirosc/3commas-typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "husky install",
"dev": "ts-node-dev --respawn src/index.ts",
"prettier": "prettier --write .",
"publish:npm": "npm run build && npm publish"
},
"keywords": [
"typescript",
"3commas"
],
"author": "Kiros Choi",
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.0.6",
"@types/qs": "^6.9.7",
"@types/ws": "^8.5.3",
"dotenv": "^16.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"crypto-js": "^4.1.1",
"qs": "^6.11.0",
"ws": "^8.8.1"
},
"lint-staged": {
"*.{ts,json,md}": "prettier --write"
}
}