forked from kmanus88/GRVTBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 965 Bytes
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
{
"name": "grvt-grid",
"version": "0.1.0",
"private": true,
"description": "Self-hostable multi-user grid trading bot for GRVT perpetual futures, with real-time dashboard and Telegram alerts.",
"license": "AGPL-3.0-or-later",
"homepage": "https://grvtbot.com",
"repository": {
"type": "git",
"url": "https://github.com/kmanus88/GRVTBot.git"
},
"bugs": {
"url": "https://github.com/kmanus88/GRVTBot/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev:bot": "npm run dev --workspace=@grvt-grid/bot",
"dev:dashboard": "npm run dev --workspace=@grvt-grid/dashboard",
"dev:notifier": "npm run dev --workspace=@grvt-grid/notifier",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"engines": {
"node": ">=22.0.0"
}
}