wikipedia-game-solver/apps/cli/package.json

32 lines
858 B
JSON
Raw Normal View History

2024-07-24 12:35:33 +02:00
{
"name": "@repo/cli",
"version": "1.0.0-staging.1",
2024-07-24 12:35:33 +02:00
"private": true,
"type": "module",
"imports": {
"#*": "./src/*"
},
"bin": {
"wikipedia-game-solver": "./src/index.ts"
},
"scripts": {
"start": "node --import=tsx ./src/index.ts",
"dev-test": "node --import=tsx --watch --watch-preserve-output ./src/index.ts",
2024-07-24 12:35:33 +02:00
"lint:eslint": "eslint src --max-warnings 0 --report-unused-disable-directives",
"lint:typescript": "tsc --noEmit"
},
"dependencies": {
"@repo/wikipedia-game-solver": "workspace:*",
"@repo/constants": "workspace:*",
"tsx": "catalog:"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/config-typescript": "workspace:*",
"@types/node": "catalog:",
"@total-typescript/ts-reset": "catalog:",
"eslint": "catalog:",
"typescript": "catalog:"
}
}