21 lines
486 B
JSON
21 lines
486 B
JSON
{
|
|
"name": "@stock-bot/config",
|
|
"version": "1.0.0",
|
|
"description": "Shared configuration for the trading bot",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"test": "echo \"No tests yet\""
|
|
},
|
|
"dependencies": {
|
|
"@stock-bot/shared-types": "workspace:*",
|
|
"dotenv": "^16.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.4.5",
|
|
"@types/node": "^20.12.12"
|
|
}
|
|
}
|