-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.6 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.6 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
{
"name": "tradeclaw",
"version": "0.1.0",
"private": true,
"description": "Open-source AI trading agent platform. Self-hosted. Free forever.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=apps/web",
"build": "npm run build --workspace=packages/signals && npm run build --workspace=apps/web",
"build:signals": "npm run build --workspace=packages/signals",
"build:agent": "npm run build --workspace=packages/agent",
"build:all": "npm run build:signals && npm run build:agent && npm run build && npm run ws:build",
"lint": "npm run lint --workspace=apps/web",
"start": "npm run start --workspace=apps/web",
"agent": "npx tsx packages/agent/src/cli/cli.ts",
"agent:start": "npx tsx packages/agent/src/cli/cli.ts start",
"agent:scan": "npx tsx packages/agent/src/cli/cli.ts scan",
"agent:server": "npx tsx packages/agent/src/server/server.ts",
"ws:dev": "npm run dev --workspace=apps/ws-server",
"ws:build": "npm run build --workspace=apps/ws-server",
"ws:start": "npm run start --workspace=apps/ws-server",
"ws:test": "npm run test --workspace=apps/ws-server",
"test": "jest",
"test:e2e": "npm run test:e2e --workspace=apps/web"
},
"repository": {
"type": "git",
"url": "https://github.com/naimkatiman/tradeclaw.git"
},
"keywords": [
"trading",
"ai",
"signals",
"self-hosted",
"open-source",
"technical-analysis"
],
"author": "Naim Katiman",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6"
}
}