-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
70
71
72
73
{
"name": "@itick/node-sdk",
"version": "1.0.3",
"description": "Official iTick API SDK for Node.js. Real-time & historical data for global Stocks, Forex, Crypto, Indices, Futures, Funds, Precious Metals. REST (OHLCV/K-line) + low-latency WebSocket. Promise-based, TypeScript-ready. For quant trading & fintech",
"main": "index.js",
"module": "index.esm.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./index.esm.js",
"require": "./index.js"
}
},
"files": [
"lib",
"index.js",
"index.esm.js",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf lib index.js index.esm.js",
"build:lib": "tsc",
"build:dist": "rollup -c rollup.config.mjs",
"build": "npm run clean && npm run build:lib && npm run build:dist",
"dev": "rollup -c rollup.config.mjs -w",
"test": "npx ts-node tests/test_client.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"iTick",
"Financial API",
"Market Data API",
"Stock API",
"Forex API",
"Crypto API",
"Real-time Quotes",
"Historical Data",
"OHLCV",
"K-line",
"WebSocket API",
"REST API",
"Quantitative Trading"
],
"author": "iTick",
"license": "MIT",
"homepage": "https://itick.org",
"repository": {
"type": "git",
"url": "https://github.com/itick-org/nodejs-sdk.git"
},
"dependencies": {
"ws": "^8.14.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"rollup": "^3.0.0",
"tslib": "2.8.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}