forked from slimandslam/schwab-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.58 KB
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
{
"name": "schwab-client-js",
"author": "Jason Levitt",
"description": "NodeJS Typescript/Javascript client for the Schwab API",
"version": "1.1.3",
"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"
},
"support": {
"url": "https://discord.gg/Q9z8EnB8xD"
},
"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": "^24.0.10",
"@types/ws": "^8.18.1",
"bufferutil": "^4.0.9",
"debug": "^4.4.1",
"dotenv": "^17.1.0",
"open": "^10.1.2",
"selfsigned": "^2.4.1",
"typescript": "^5.8.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"prettier": "^3.6.2"
},
"engineStrict": true,
"engines": {
"node": ">= 18"
}
}