-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "shellchess",
"version": "0.1.0",
"description": "Play Lichess from your terminal",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/Moh1tsingh/shellchess#readme",
"bugs": {
"url": "https://github.com/Moh1tsingh/shellchess/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Moh1tsingh/shellchess.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": "dist/index.js",
"scripts": {
"dev": "tsx src/index.tsx",
"dev:board": "tsx src/index.tsx --dev-board",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"keywords": [
"chess",
"lichess",
"tui",
"cli",
"ink",
"terminal"
],
"dependencies": {
"chess.js": "^1.0.0",
"ctx-switch": "^2.0.7",
"ink": "^5.0.1",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/react": "^18.3.3",
"ink-testing-library": "^4.0.0",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=20"
}
}