-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathpackage.json
97 lines (97 loc) · 3.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@fluentui-react-native/button",
"version": "0.39.4",
"description": "A cross-platform Button component using the Fluent Design System",
"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",
"depcheck": "fluentui-scripts depcheck",
"just": "fluentui-scripts",
"clean": "fluentui-scripts clean",
"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/components/Button"
},
"dependencies": {
"@fluentui-react-native/adapters": "workspace:*",
"@fluentui-react-native/experimental-activity-indicator": "workspace:*",
"@fluentui-react-native/experimental-shadow": "workspace:*",
"@fluentui-react-native/framework": "workspace:*",
"@fluentui-react-native/icon": "workspace:*",
"@fluentui-react-native/interactive-hooks": "workspace:*",
"@fluentui-react-native/pressable": "workspace:*",
"@fluentui-react-native/styling-utils": "workspace:*",
"@fluentui-react-native/text": "workspace:*",
"@fluentui-react-native/theme-tokens": "workspace:*",
"@fluentui-react-native/theme-types": "workspace:*",
"@fluentui-react-native/theming-utils": "workspace:*",
"@fluentui-react-native/tokens": "workspace:*",
"@fluentui-react-native/use-styling": "workspace:*",
"@uifabricshared/foundation-composable": "workspace:*",
"@uifabricshared/foundation-compose": "workspace:*",
"@uifabricshared/foundation-settings": "workspace:*",
"tslib": "^2.3.1"
},
"devDependencies": {
"@fluentui-react-native/eslint-config-rules": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@fluentui-react-native/test-tools": "workspace:*",
"@office-iss/react-native-win32": "^0.73.0",
"@react-native/babel-preset": "^0.73.0",
"@react-native/metro-config": "^0.73.0",
"react": "18.2.0",
"react-native": "^0.73.0"
},
"peerDependencies": {
"@office-iss/react-native-win32": "^0.73.0",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native-macos": "^0.73.0",
"react-native-svg": "^15.0.0",
"react-native-windows": "^0.73.0"
},
"author": "",
"license": "MIT",
"sideEffects": false,
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"presets": [
"microsoft/react-native"
],
"requirements": [
],
"capabilities": [
"core",
"core-android",
"core-ios",
"react"
]
}
},
"peerDependenciesMeta": {
"@office-iss/react-native-win32": {
"optional": true
},
"react-native-macos": {
"optional": true
},
"react-native-windows": {
"optional": true
}
}
}