Summary: JS/TS api: - migrate to TS - some refactoring (get rid of bridge, make client abstract) Implementation isn't full yet, things to be implemented: - let plugins connect on init command from Flipper - implement Responder Further plans: - make fully compatible with react-native api without breaking changes Reviewed By: mweststrate Differential Revision: D21839377 fbshipit-source-id: 9e9fe4ad01632f958b59eb255c703c6cbc5fafe2
29 lines
633 B
JSON
29 lines
633 B
JSON
{
|
|
"name": "flipper-client-sdk",
|
|
"version": "0.0.1",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"title": "Flipper SDK API",
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/flipper.git",
|
|
"baseUrl": "https://github.com/facebook/flipper/tree/master/flipper-js-client-sdk"
|
|
},
|
|
"keywords": [
|
|
"flipper"
|
|
],
|
|
"author": {
|
|
"name": "Facebook Inc"
|
|
},
|
|
"license": "MIT",
|
|
"licenseFilename": "LICENSE",
|
|
"readmeFilename": "README.md",
|
|
"devDependencies": {
|
|
"typescript": "^3.9.2"
|
|
}
|
|
}
|