27 lines
596 B
JSON
27 lines
596 B
JSON
{
|
|
"name": "@stock-bot/handler-registry",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "bun run build:clean && bun run build:tsc",
|
|
"build:clean": "rm -rf dist",
|
|
"build:tsc": "tsc",
|
|
"test": "bun test",
|
|
"clean": "rm -rf dist node_modules .turbo"
|
|
},
|
|
"dependencies": {
|
|
"@stock-bot/types": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "*",
|
|
"typescript": "*"
|
|
}
|
|
}
|