-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
51
52
53
54
55
56
57
{
"name": "@react-chess/chessground",
"version": "1.3.4",
"description": "Chessground react wrapper",
"main": "build/esm/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"type": "module",
"files": [
"build"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build:esm": "tsc",
"lint": "eslint . --ignore-path .gitignore --ext .tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-chess/chessground.git"
},
"keywords": [
"chess",
"react",
"chessground",
"lichess",
"typescript"
],
"author": "H-Richard",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/react-chess/chessground/issues"
},
"homepage": "https://github.com/react-chess/chessground#readme",
"devDependencies": {
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"semantic-release": "^17.4.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"chessground": "8.3.5"
}
}