-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.66 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
{
"name": "traide",
"version": "0.1.0",
"description": "trAIde core: Technical Analysis for TypeScript (port of Python ta)",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Independent-AI-Labs/trAIde.git"
},
"bugs": {
"url": "https://github.com/Independent-AI-Labs/trAIde/issues"
},
"homepage": "https://github.com/Independent-AI-Labs/trAIde#readme",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.json && tsup src/index.ts --format esm,cjs --dts",
"test": "vitest run --coverage",
"lint": "eslint . --max-warnings=0",
"format": "prettier -w .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"bench": "node scripts/bench_rolling.mjs",
"ui:start": "node packages/traide-runner/bin/traide-runner.js ui start",
"ui:stop": "node packages/traide-runner/bin/traide-runner.js ui stop",
"ui:status": "node packages/traide-runner/bin/traide-runner.js ui status",
"ui:logs": "node packages/traide-runner/bin/traide-runner.js ui logs --follow",
"ui:test": "vitest run --config apps/traide-ui/vitest.config.ts --coverage",
"dev:start": "node packages/traide-runner/bin/traide-runner.js all start --mini --open",
"demo:start": "node packages/traide-runner/bin/traide-runner.js all start --prod --mini=false --open",
"dev:watch": "TRAIDE_WATCH=1 node packages/traide-runner/bin/traide-runner.js all start --mini=false --watch --open",
"dev:watch:external": "TRAIDE_WATCH=1 node packages/traide-runner/bin/traide-runner.js all start --external-mcp --base-url http://172.72.72.2:62007 --ui-port 62008 --open",
"dev:stop": "node packages/traide-runner/bin/traide-runner.js all stop",
"dev:status": "node packages/traide-runner/bin/traide-runner.js all status"
},
"keywords": ["technical-analysis", "indicators", "trading", "typescript", "finance"],
"author": "",
"license": "MIT",
"devDependencies": {
"jsdom": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.3.3",
"typescript-eslint": "^8.7.0",
"@types/node": "^20.12.12",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^1.5.0",
"@vitest/coverage-v8": "^1.5.0",
"ws": "^8.17.1",
"nodemon": "^3.1.0"
},
"workspaces": [
"packages/*",
"apps/*"
]
}