forked from microsoft/fluentui-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@fluentui-react-native/interactive-hooks",
"version": "0.22.3",
"description": "Hooks for adding focus, hover, and press semantics to view based components",
"main": "src/index.ts",
"module": "src/index.ts",
"typings": "lib/index.d.ts",
"onPublish": {
"main": "lib-commonjs/index.js",
"module": "lib/index.js"
},
"scripts": {
"build": "fluentui-scripts build",
"just": "fluentui-scripts",
"clean": "fluentui-scripts clean",
"depcheck": "fluentui-scripts depcheck",
"lint": "fluentui-scripts eslint",
"test": "fluentui-scripts jest",
"update-snapshots": "fluentui-scripts jest -u",
"prettier": "fluentui-scripts prettier",
"prettier-fix": "fluentui-scripts prettier --fix true"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "packages/utils/interactive-hooks"
},
"dependencies": {
"@fluentui-react-native/adapters": "^0.10.0",
"@fluentui-react-native/framework": ">=0.8.28 <1.0.0",
"@fluentui-react-native/memo-cache": "^1.1.7",
"invariant": "^2.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@fluentui-react-native/eslint-config-rules": "^0.1.1",
"@fluentui-react-native/test-tools": ">=0.1.1 <1.0.0",
"@office-iss/react-native-win32": "^0.68.0",
"@types/invariant": "^2.2.0",
"@types/jest": "^26.0.0",
"@types/react": "^17.0.2",
"@types/react-native": "^0.68.0",
"react": "17.0.2",
"react-native": "^0.68.0",
"react-native-macos": "^0.68.0",
"react-native-windows": "^0.68.0"
},
"peerDependencies": {
"react": "17.0.2",
"react-native": "^0.68.0"
},
"author": "",
"license": "MIT",
"rnx-kit": {
"reactNativeVersion": "^0.68",
"reactNativeDevVersion": "^0.68",
"kitType": "library",
"capabilities": [
"core",
"core-android",
"core-ios",
"react"
]
}
}