Files
flipper/desktop/examples/headless-tic-tac-toe/package.json
Pascal Hartig 160b05a5bd Bump deps
Summary:
This updates minor and patch level dependencies. Frustratingly, I had to revert a bunch
of changes in that version range that still caused incompatibilities and test failures.

If I find time, I'll dig a bit deeper.

Reviewed By: ivanmisuno

Differential Revision: D48433210

fbshipit-source-id: 9ab12e774c1992d4f22cc1428d34f102ce820b75
2023-08-21 03:03:30 -07:00

27 lines
592 B
JSON

{
"name": "flipper-headless-tic-tac-toe",
"version": "0.0.0",
"description": "Tic-tac-toe Flipper desktop plugin implementation for the terminal",
"homepage": "https://github.com/facebook/flipper",
"keywords": [
"Flipper"
],
"repository": "facebook/flipper",
"bugs": "https://github.com/facebook/flipper/issues",
"author": "Facebook, Inc",
"bin": "index.js",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"inquirer": "^8.2.4",
"ws": "^8.13.0"
},
"files": [
"*.js",
"README.md"
]
}