Guardian-Agent / package.json
Prince9868's picture
Hackathon submission: Guardian OpenEnv
5743bc2
Raw
History Blame Contribute Delete
646 Bytes
{
"name": "workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "node scripts/preinstall.mjs",
"dev": "node scripts/dev-workspace.mjs",
"dev:api": "node scripts/dev-api.mjs",
"build": "pnpm run typecheck && pnpm -r --if-present run build",
"typecheck:libs": "tsc --build",
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./artifacts/**\" --filter \"./scripts\" --if-present run typecheck",
"test:extension": "node --test artifacts/guardian-extension/tests/*.test.cjs"
},
"private": true,
"devDependencies": {
"typescript": "~5.9.2",
"prettier": "^3.8.1"
}
}