-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "schwab-client-js",
"author": "Jason Levitt",
"description": "Javascript client for the Schwab API",
"version": "1.0.9",
"homepage": "https://github.com/slimandslam/schwab-client-js#readme",
"main": "./dist/schwab-client-js.js",
"bugs": {
"url": "https://github.com/slimandslam/schwab-client-js/issues"
},
"exports": {
".": "./dist/schwab-client-js.js",
"./orderhelp": "./dist/orderhelp.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/slimandslam/schwab-client-js.git"
},
"keywords": [
"Schwab",
"javascript",
"typescript",
"stock trading",
"market data",
"nodejs"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"format": "prettier --write .",
"lint": "eslint ."
},
"bin": {
"schwab-authorize": "bin/schwab-authorize.js",
"manual-authorize": "bin/manual-authorize.js"
},
"dependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"bufferutil": "^4.0.8",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"open": "^10.1.0",
"selfsigned": "^2.4.1",
"typescript": "^5.7.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-define-config": "^2.1.0",
"prettier": "^3.4.2"
},
"engineStrict": true,
"engines": {
"node": ">= 18"
}
}