mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 19:05:18 +00:00
20 lines
593 B
JSON
20 lines
593 B
JSON
{
|
|
"name": "@sandbox-agent/example-skills-custom-tool",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:script": "esbuild src/random-number.ts --bundle --format=cjs --platform=node --target=node18 --minify --outfile=dist/random-number.cjs",
|
|
"start": "pnpm build:script && tsx src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@sandbox-agent/example-shared": "workspace:*",
|
|
"sandbox-agent": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"esbuild": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest"
|
|
}
|
|
}
|