forked from chrislicodes/obsidian-chess-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 KB
/
package.json
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
{
"name": "chess-study",
"version": "1.1.0",
"description": "A chess study helper and PGN viewer/editor.",
"keywords": [
"chess",
"obsidian"
],
"license": "GPL-3.0-or-later",
"author": "Christoph Lindstädt",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"format": "prettier --write .",
"prepare": "husky install",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"dependencies": {
"@tiptap/pm": "2.0.3",
"@tiptap/react": "2.0.3",
"@tiptap/starter-kit": "2.0.3",
"chess.js": "1.0.0-beta.6",
"chessground": "8.3.7",
"immer": "^10.0.2",
"lucide-react": "0.220.0",
"nanoid": "4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@types/node": "20.2.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"builtin-modules": "3.3.0",
"esbuild": "0.17.19",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"obsidian": "latest",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"pretty-quick": "3.1.3",
"tslib": "2.5.2",
"typescript": "5.0.4"
}
}