mirror of
https://github.com/tuxitop/chessview.git
synced 2026-07-22 06:27:57 +00:00
33 lines
1 KiB
JSON
33 lines
1 KiB
JSON
{
|
|
"name": "chessview",
|
|
"version": "1.3.0",
|
|
"description": "Interactive chess board plugin for Obsidian",
|
|
"author": "Ali Mousavi",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tuxitop/chessview"
|
|
},
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"lint": "eslint src/ --ext .ts",
|
|
"lint:fix": "eslint src/ --ext .ts --fix",
|
|
"embed-pieces": "node scripts/embed-pieces.mjs",
|
|
"dev": "npm run embed-pieces && node esbuild.config.mjs",
|
|
"build": "npm run lint && npm run embed-pieces && node esbuild.config.mjs production"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.55.0",
|
|
"@typescript-eslint/parser": "^8.55.0",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "^0.19.8",
|
|
"eslint": "^9.39.2",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"dependencies": {
|
|
"chess.js": "0.13.4",
|
|
"chessground": "^9.1.1"
|
|
}
|
|
}
|