-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-xstate",
"id": "xstate",
"version": "1.0.4",
"pluginType": "client",
"main": "dist/bundle.js",
"flipperBundlerEntry": "src/index.tsx",
"license": "MIT",
"author": {
"name": "Craig Petzel",
"url": "https://github.com/cpetzel"
},
"keywords": [
"flipper-plugin",
"react-native",
"xstate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cpetzel/flipper-plugin-xstate.git"
},
"icon": "rocket",
"title": "XState",
"scripts": {
"lint": "flipper-pkg lint",
"build": "flipper-pkg bundle",
"watch": "flipper-pkg bundle --watch",
"test": "jest --no-watchman"
},
"peerDependencies": {
"antd": "latest",
"flipper-plugin": "^0.100.0"
},
"devDependencies": {
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@testing-library/react": "latest",
"@types/jest": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"antd": "latest",
"flipper-pkg": "^0.110.0",
"flipper-plugin": "latest",
"jest": "latest",
"typescript": "latest"
},
"dependencies": {
"ws": "^8.2.2"
}
}