32 lines
858 B
JSON
32 lines
858 B
JSON
{
|
|
"name": "@repo/cli",
|
|
"version": "1.0.0-staging.1",
|
|
"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",
|
|
"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:"
|
|
}
|
|
}
|