Files
CoqDecks/package.json
T
Gareth Latty a3a62fba2e Resolve some bugs and refactor localizations.
Resolve #167: Correct capitalization on cards
Resolve #169: Fix cast code failing to compile by moving to ES6 for the closure compiler target.
Move to noun and plural set-up which should make localization easier.
2020-09-27 19:08:13 +01:00

22 lines
711 B
JSON

{
"name": "massivedecks",
"description": "Pulls together both the server and client for Massive Decks, a comedy party game.",
"version": "2.0.0",
"author": "Reread Games <team@rereadgames.com>",
"license": "AGPL-3.0-or-later",
"private": true,
"repository": "github:Lattyware/massivedecks",
"engines": {
"node": "14.x.x"
},
"scripts": {
"build": "cp -r server/decks decks && npm run buildServer && npm run buildClient",
"buildServer": "npm explore @massivedecks/server -- npm run build",
"buildClient": "npm explore @massivedecks/client -- npm run build"
},
"dependencies": {
"@massivedecks/server": "file:./server",
"@massivedecks/client": "file:./client"
}
}