Add --passWithNoTests to all vitest test scripts so packages without test files don't fail CI. Add .prettierignore for auto-generated files (next-env.d.ts, dist, drizzle, .next). All quality gates now pass: typecheck, lint, format:check, test, build (18/18 packages). Closes #9 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
593 B
JSON
29 lines
593 B
JSON
{
|
|
"name": "@mosaic/discord-plugin",
|
|
"version": "0.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsx watch src/index.ts",
|
|
"lint": "eslint src",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"discord.js": "^14.16.0",
|
|
"socket.io-client": "^4.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.0.0",
|
|
"typescript": "^5.8.0",
|
|
"vitest": "^2.0.0"
|
|
}
|
|
}
|