-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@allensarkisyan/schwab-td-ameritrade-streamer",
"version": "1.0.0",
"private": false,
"type": "module",
"author": "Allen Sarkisyan",
"main": "./dist/cjs/td-streamer.js",
"module": "./dist/esm/td-streamer.js",
"types": "./index.d.ts",
"license": "MIT",
"homepage": "https://allensarkisyan.github.io/schwab-td-ameritrade-streamer/",
"repository": {
"type": "git",
"url": "https://github.com/allensarkisyan/schwab-td-ameritrade-streamer.git"
},
"bugs": "https://github.com/allensarkisyan/schwab-td-ameritrade-streamer/issues",
"description": "Charles Schwab / TD Ameritrade - JavaScript / TypeScript Streamer - WebSocket Client",
"keywords": [
"TD Ameritrade",
"Charles Schwab",
"TypeScript",
"Stocks",
"Trading",
"Options",
"Futures",
"Market Data",
"Financial Data",
"Streaming Data",
"Fintech"
],
"scripts": {
"build:types": "tsc --declaration --project tsconfig.types.json",
"build:esm": "tsc --project tsconfig.json --module esnext --outDir ./dist/esm",
"build:cjs": "tsc --project tsconfig.json --module commonjs --outDir ./dist/cjs",
"build": "npm run build:types && npm run build:esm && npm run build:cjs && prettier ./index.d.ts --write && cd dist && prettier . --write && npm run prepare-types",
"prepare-types": "./scripts/prepare_types.sh",
"test": "jest --coverage --testPathIgnorePatterns=/test/helpers.js --coveragePathIgnorePatterns=/test/helpers.js"
},
"dependencies": {
"eventemitter3": "5.0.1",
"isomorphic-ws": "5.0.0",
"ws": "8.14.2",
"xml-js": "1.6.11"
},
"devDependencies": {
"@types/node": "20.6.0",
"jest": "29.7.0",
"prettier": "3.0.3",
"typescript": "5.2.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.31.0"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"arrowParens": "always"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"require": {
"types": "./index.d.ts",
"default": "./dist/cjs/td-streamer.js"
},
"import": {
"types": "./index.d.ts",
"default": "./dist/esm/td-streamer.js"
},
"default": "./dist/esm/td-streamer.js"
},
"./td-constants": {
"require": {
"types": "./index.d.ts",
"default": "./dist/cjs/td-constants.js"
},
"import": {
"types": "./index.d.ts",
"default": "./dist/esm/td-constants.js"
},
"default": "./dist/esm/td-constants.js"
}
}
}