-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "chess-ui",
"version": "1.0.2",
"description": "A react ui library for integrating chess into web apps",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist/ && npm run build:umd && python3 compile.py && npm run build:esm ",
"dev": "rm -rf dist/ && npm run build:umd && python3 compile.py && npm run build:esm:w ",
"build:esm": "tsc",
"build:esm:w": "tsc --watch",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build:umd": "tsc --module UMD --outDir dist/umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TishanV/chess-ui.git"
},
"keywords": [],
"author": "TishanV",
"license": "ISC",
"bugs": {
"url": "https://github.com/TishanV/chess-ui/issues"
},
"homepage": "https://github.com/TishanV/chess-ui#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"bootstrap": "^5.1.3",
"react-bootstrap": "^2.4.0",
"recoil": "^0.7.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [
"chess",
"chess ui",
"chess gui",
"chess frontend",
"react chess",
"chess app"
]
}