-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.49 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@thecommandcat/fbtf",
"version": "0.1.0",
"description": "Node-first multi-asset backtesting and live paper trading runtime.",
"license": "MIT",
"type": "module",
"packageManager": "npm@10",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"algorithmic-trading",
"backtesting",
"equities",
"futures",
"paper-trading",
"trading",
"typescript"
],
"homepage": "https://github.com/TheCommandCat/fbtf#readme",
"bugs": {
"url": "https://github.com/TheCommandCat/fbtf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCommandCat/fbtf.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./broker": {
"types": "./dist/broker/index.d.ts",
"import": "./dist/broker/index.js"
},
"./context": {
"types": "./dist/context/index.d.ts",
"import": "./dist/context/index.js"
},
"./data": {
"types": "./dist/data/index.d.ts",
"import": "./dist/data/index.js"
},
"./data/databento": {
"types": "./dist/data/databento.d.ts",
"import": "./dist/data/databento.js"
},
"./diagnostics": {
"types": "./dist/diagnostics/index.d.ts",
"import": "./dist/diagnostics/index.js"
},
"./experiment": {
"types": "./dist/experiment/index.d.ts",
"import": "./dist/experiment/index.js"
},
"./feeds": {
"types": "./dist/feeds/index.d.ts",
"import": "./dist/feeds/index.js"
},
"./indicators": {
"types": "./dist/indicators/index.d.ts",
"import": "./dist/indicators/index.js"
},
"./markets": {
"types": "./dist/markets/index.d.ts",
"import": "./dist/markets/index.js"
},
"./results": {
"types": "./dist/results/index.d.ts",
"import": "./dist/results/index.js"
},
"./risk": {
"types": "./dist/risk/index.d.ts",
"import": "./dist/risk/index.js"
},
"./runner": {
"types": "./dist/runner/index.d.ts",
"import": "./dist/runner/index.js"
},
"./services": {
"types": "./dist/services/index.d.ts",
"import": "./dist/services/index.js"
},
"./strategy": {
"types": "./dist/strategy/index.d.ts",
"import": "./dist/strategy/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"fbtf": "./dist/cli/main.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc --pretty false --project tsconfig.build.json",
"docs:dev": "npm --prefix docs run dev",
"docs:build": "npm --prefix docs run build",
"docs:start": "npm --prefix docs run start",
"prepack": "rm -rf dist *.tgz tsconfig.build.tsbuildinfo && npm run build",
"typecheck": "tsc --noEmit --pretty false --project tsconfig.json",
"test": "node ./node_modules/vitest/vitest.mjs run --config vitest.config.ts test/unit",
"test:integration": "node ./node_modules/vitest/vitest.mjs run --config vitest.config.ts test/integration",
"verify:release": "npm run build && npm run typecheck && npm test && npm run test:integration && node ./scripts/smoke-packed-install.mjs"
},
"devDependencies": {
"@napi-rs/canvas": "^0.1.99",
"@types/node": "^20.19.39",
"@types/react": "^18.3.12",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^1.5.0"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"ink": "^5.2.1",
"react": "^18.3.1"
}
}