32 lines
843 B
JSON
32 lines
843 B
JSON
|
{
|
||
|
"name": "@repo/cli",
|
||
|
"version": "0.0.1",
|
||
|
"private": true,
|
||
|
"type": "module",
|
||
|
"imports": {
|
||
|
"#*": "./src/*"
|
||
|
},
|
||
|
"bin": {
|
||
|
"wikipedia-game-solver": "./src/index.ts"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"start": "node --import=tsx ./src/index.ts",
|
||
|
"dev": "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:"
|
||
|
}
|
||
|
}
|