-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.27 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
{
"name": "@allensarkisyan/schwab-td-ameritrade-api",
"version": "1.0.0",
"private": false,
"type": "module",
"author": "Allen Sarkisyan",
"main": "./dist/cjs/td-api.js",
"module": "./dist/esm/td-api.js",
"types": "./index.d.ts",
"license": "MIT",
"homepage": "https://allensarkisyan.github.io/schwab-td-ameritrade-api/",
"repository": {
"type": "git",
"url": "https://github.com/allensarkisyan/schwab-td-ameritrade-api.git"
},
"bugs": "https://github.com/allensarkisyan/schwab-td-ameritrade-api/issues",
"description": "Charles Schwab / TD Ameritrade - JavaScript / TypeScript API Client Implementation",
"keywords": [
"TD Ameritrade",
"Charles Schwab",
"TypeScript",
"Stocks",
"Trading",
"Options",
"Futures",
"Market Data",
"Financial Data",
"API Client",
"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"
},
"dependencies": {
"zod": "3.22.2"
},
"devDependencies": {
"@types/node": "20.6.0",
"jest": "29.7.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"arrowParens": "always"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/cjs/td-api.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/esm/td-api.js"
},
"default": "./dist/esm/td-api.js"
},
"./td-utils": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/cjs/td-utils.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/esm/td-utils.js"
},
"default": "./dist/esm/td-utils.js"
}
}
}