-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "openingscanner",
"version": "0.1.0",
"private": true,
"description": "Client-side scanner that extracts any Lichess or Chess.com player's real opening repertoire — frequency, win rate, weak spots, PGN export.",
"license": "MIT",
"author": "Antoine <antoine@chessatlas.net>",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"homepage": "https://openingscanner.com",
"repository": {
"type": "git",
"url": "git+https://github.com/atamano/openingscanner.git"
},
"bugs": {
"url": "https://github.com/atamano/openingscanner/issues"
},
"keywords": [
"chess",
"lichess",
"chess.com",
"opening",
"repertoire",
"eco",
"pgn",
"nextjs"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toggle-group": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"chess.js": "^1.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"dexie": "^4.4.2",
"lucide-react": "^1.14.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"nuqs": "^2.2.3",
"react": "^19.2.7",
"react-chessboard": "^5.2.0",
"react-dom": "^19.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.7.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.17.0",
"eslint-config-next": "^16.2.6",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "^5.7.2"
},
"//pnpm.overrides": "Patch transitive advisories whose parent pins below the fix (next pins postcss 8.4.31 exactly, so bumping next never clears it). Keep each range inside the parent's major: an open-ended range resolves to the next major and breaks the consumer.",
"pnpm": {
"overrides": {
"postcss@<8.5.10": "^8.5.10",
"js-yaml@<4.2.0": "^4.2.0",
"@babel/core@<7.29.6": "^7.29.6"
}
}
}