disclaw/package.json
dev 67433d63fa
Some checks are pending
CI / build-and-test (ubuntu-latest) (push) Waiting to run
CI / build-and-test (windows-latest) (push) Waiting to run
CI / lint (push) Waiting to run
Merge pull request 'refactor(DIS-108): extract DB schema to src/db/schema.sql (SSOT)' (#50) from phase-1/db-schema-ssot into main
Reviewed-on: #50
2026-04-09 16:01:48 +00:00

46 lines
1.3 KiB
JSON

{
"name": "disclaw",
"version": "0.1.0",
"description": "Discord-bot-powered multi-agent workspace manager built on Claude Code",
"main": "dist/index.js",
"scripts": {
"build": "tsc && node -e \"require('fs').cpSync('src/db/schema.sql', 'dist/db/schema.sql')\"",
"start": "node dist/index.js",
"dev": "tsc && node -e \"require('fs').cpSync('src/db/schema.sql', 'dist/db/schema.sql')\" && node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts"
},
"vitest": {
"include": [
"tests/**/*.test.ts"
],
"environment": "node"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"cross-spawn": "^7.0.6",
"discord.js": "^14.16.0",
"dotenv": "^16.4.0",
"pino": "^10.3.1",
"yaml": "^2.6.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.0.0",
"@types/pino": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^8.57.0",
"pino-pretty": "^13.1.3",
"typescript": "^5.7.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}