Summary: Added command "init" to "flipper-pkg" which helps to quickly initialise Flipper desktop plugin. Reviewed By: passy Differential Revision: D21253819 fbshipit-source-id: 85a2fbde07ecb63737d180d2a7e5cc2846b4f533
74 lines
1.8 KiB
JSON
74 lines
1.8 KiB
JSON
{
|
|
"name": "flipper-pkg",
|
|
"version": "0.39.0",
|
|
"description": "Utility for building and publishing Flipper plugins",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"flipper-pkg": "./bin/run"
|
|
},
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"@oclif/command": "^1",
|
|
"@oclif/config": "^1",
|
|
"@oclif/parser": "^3",
|
|
"@oclif/plugin-help": "^2",
|
|
"@oclif/plugin-warn-if-update-available": "^1.7.0",
|
|
"ajv": "^6.12.2",
|
|
"ajv-errors": "^1.0.1",
|
|
"cli-ux": "^5.4.5",
|
|
"flipper-pkg-lib": "0.39.0",
|
|
"fs-extra": "^8.1.0",
|
|
"inquirer": "^7.1.0",
|
|
"recursive-readdir": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/dev-cli": "^1",
|
|
"@types/fs-extra": "^8.1.0",
|
|
"@types/inquirer": "^6.5.0",
|
|
"@types/jest": "^25.1.0",
|
|
"@types/node": "^13.7.5",
|
|
"globby": "^10",
|
|
"jest": "^25.1.0",
|
|
"prettier": "^2.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^25.2.1",
|
|
"ts-node": "^8",
|
|
"typescript": "^3.7.2"
|
|
},
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"readme": "oclif-dev readme",
|
|
"postpack": "rimraf oclif.manifest.json",
|
|
"prepack": "yarn reset && yarn build && oclif-dev manifest && oclif-dev readme",
|
|
"run": "yarn build && bin/run",
|
|
"version": "oclif-dev readme && hg add README.md"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json",
|
|
"lib/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc",
|
|
"oclif": {
|
|
"commands": "./lib/commands",
|
|
"bin": "flipper-pkg",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-warn-if-update-available"
|
|
]
|
|
}
|
|
}
|