asg-chess-react
Version:
A React-based chess game component with an interactive interface, piece movement validation, and customizable styling.
80 lines • 1.9 kB
JSON
{
"name": "asg-chess-react",
"version": "1.0.1",
"description": "A React-based chess game component with an interactive interface, piece movement validation, and customizable styling.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c"
},
"keywords": [
"reactjs",
"chess",
"chessgame",
"component",
""
],
"author": "Ashutosh Gupta <ashutoshgupta6480@gmail.com>",
"license": "MIT",
"babel": {
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": 100,
"safari": 15,
"firefox": 91
}
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
]
},
"postcss": {
"plugins": {
"postcss-import": {}
}
},
"repository": {
"type": "git",
"url": "https://github.com/AshutoshGupta6489/chessgamereactpackage.git"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.4",
"@testing-library/react": "^14.0.0",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}