-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.05 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.05 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "eodhd",
"version": "1.0.0",
"type": "module",
"description": "Official Node.js/TypeScript library for EODHD Financial Data APIs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ test/",
"lint:fix": "biome check --write src/ test/",
"format": "biome format --write src/ test/",
"test": "node --import tsx test/smoke.ts",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run typecheck && npm run test:unit && npm run build"
},
"keywords": [
"eodhd",
"financial-data",
"stock-market",
"api",
"stocks",
"etf",
"forex",
"crypto",
"fundamentals",
"options",
"eod",
"historical-data",
"real-time",
"websocket",
"typescript"
],
"author": "EODHD APIs <supportlevel1@eodhistoricaldata.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EodHistoricalData/EODHD-APIs-Node-Financial-Library.git"
},
"homepage": "https://eodhd.com",
"bugs": {
"url": "https://github.com/EodHistoricalData/EODHD-APIs-Node-Financial-Library/issues"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/node": "^25.3.3",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"ws": "^8.0.0"
},
"peerDependenciesMeta": {
"ws": {
"optional": true
}
}
}