Files
flipper/desktop/examples/headless-tic-tac-toe/package.json
Andrey Goncharov 38814f16f9 Prepare headless tic-tac-toe for publishing
Summary: Make headless-tic-tac-toe executable and configure packaging

Reviewed By: lblasa

Differential Revision: D36589422

fbshipit-source-id: d8b141033434265e4f14b9a047d3bccde8fad14b
2022-05-23 08:06:18 -07:00

27 lines
591 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.6.0"
},
"files": [
"*.js",
"README.md"
]
}