-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.04 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.04 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@fluentui-react-native/contextual-menu",
"version": "0.25.3",
"description": "A cross-platform ContextualMenu component using the Fluent Design System",
"homepage": "https://github.com/microsoft/fluentui-react-native",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "packages/components/ContextualMenu"
},
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib-commonjs/index.js",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "fluentui-scripts build",
"build-cjs": "tsgo --outDir lib-commonjs",
"build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler",
"clean": "fluentui-scripts clean",
"depcheck": "fluentui-scripts depcheck",
"format": "fluentui-scripts format",
"lint": "fluentui-scripts lint",
"lint-package": "fluentui-scripts lint-package",
"test": "fluentui-scripts jest",
"update-snapshots": "fluentui-scripts jest -u"
},
"dependencies": {
"@fluentui-react-native/adapters": "workspace:*",
"@fluentui-react-native/callout": "workspace:*",
"@fluentui-react-native/focus-zone": "workspace:*",
"@fluentui-react-native/icon": "workspace:*",
"@fluentui-react-native/interactive-hooks": "workspace:*",
"@fluentui-react-native/text": "workspace:*",
"@fluentui-react-native/tokens": "workspace:*",
"@uifabricshared/foundation-composable": "workspace:*",
"@uifabricshared/foundation-compose": "workspace:*",
"@uifabricshared/foundation-settings": "workspace:*"
},
"devDependencies": {
"@babel/core": "catalog:",
"@fluentui-react-native/babel-config": "workspace:*",
"@fluentui-react-native/framework-base": "workspace:*",
"@fluentui-react-native/jest-config": "workspace:*",
"@fluentui-react-native/kit-config": "workspace:*",
"@fluentui-react-native/lint-config-rules": "workspace:*",
"@fluentui-react-native/pressable": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@office-iss/react-native-win32": "^0.74.0",
"@react-native-community/cli": "^20.0.0",
"@react-native-community/cli-platform-android": "^20.0.0",
"@react-native-community/cli-platform-ios": "^20.0.0",
"@react-native/babel-preset": "^0.81.0",
"@react-native/metro-babel-transformer": "^0.74.0",
"@react-native/metro-config": "^0.81.0",
"@types/react": "~19.1.4",
"@types/react-test-renderer": "^19.1.0",
"metro-config": "^0.80.3",
"react": "19.1.4",
"react-native": "^0.81.6",
"react-native-macos": "^0.81.0",
"react-native-svg": "^15.12.1",
"react-native-svg-transformer": "^1.0.0",
"react-native-windows": "^0.81.0",
"react-test-renderer": "19.1.4"
},
"peerDependencies": {
"@office-iss/react-native-win32": "^0.74.0",
"@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4",
"react": "18.2.0 || 19.0.0 || 19.1.4",
"react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6",
"react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0",
"react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1",
"react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0"
},
"peerDependenciesMeta": {
"@office-iss/react-native-win32": {
"optional": true
},
"@types/react": {
"optional": true
},
"react-native-macos": {
"optional": true
},
"react-native-windows": {
"optional": true
}
},
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"capabilities": [
"babel-preset-react-native",
"core",
"core-android",
"core-ios",
"core-macos",
"core-windows",
"core/metro-config",
"react",
"react-test-renderer",
"svg",
"tools-core",
"tools-jest"
]
},
"extends": "@fluentui-react-native/kit-config"
}
}