package.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{
"name": "emchess",
"version": "0.0.1",
"description": "A small, elegant browser chess game with emoji pieces.",
"type": "module",
"license": "GPL-3.0-or-later",
"author": "Pablo Murad <pablomurad@pm.me>",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"chess.js": "^1.4.0"
},
"devDependencies": {
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-pwa": "^1.3.0"
},
"allowScripts": {
"esbuild@0.21.5": true
}
}
|