-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.49 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.49 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
{
"name": "@fluentui-react-native/avatar",
"version": "1.12.8",
"description": "A cross-platform Avatar component using the Fluent Design System",
"license": "MIT",
"author": "Microsoft <fluentuinativeowners@microsoft.com>",
"homepage": "https://github.com/microsoft/fluentui-react-native",
"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",
"lint": "fluentui-scripts eslint",
"depcheck": "fluentui-scripts depcheck",
"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/Avatar"
},
"dependencies": {
"@fluentui-react-native/adapters": "workspace:*",
"@fluentui-react-native/badge": "workspace:*",
"@fluentui-react-native/framework": "workspace:*",
"@fluentui-react-native/icon": "workspace:*",
"@fluentui-react-native/theme-tokens": "workspace:*",
"@fluentui-react-native/theming-utils": "workspace:*",
"@fluentui-react-native/tokens": "workspace:*",
"@fluentui-react-native/use-styling": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@fluentui-react-native/eslint-config-rules": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@office-iss/react-native-win32": "^0.78.0",
"@react-native-community/cli": "^15.0.1",
"@react-native-community/cli-platform-android": "^15.0.1",
"@react-native-community/cli-platform-ios": "^15.0.1",
"@react-native/babel-preset": "^0.78.0",
"@react-native/metro-config": "^0.78.0",
"@types/react": "~19.0.0",
"react": "19.0.0",
"react-native": "^0.78.0",
"react-native-macos": "^0.78.0",
"react-native-svg": "^15.11.2",
"react-native-windows": "^0.78.0"
},
"peerDependencies": {
"@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0",
"react": "18.2.0 || ^18.2.0 || 18.3.1 || 19.0.0",
"react-native": "^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0",
"react-native-macos": "^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0",
"react-native-svg": "^15.0.0 || ^15.4.0 || ^15.6.0 || ^15.8.0 || ^15.11.1 || ^15.11.2",
"react-native-windows": "^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0"
},
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"presets": [
"@fluentui-react-native/scripts/align-deps-preset.js",
"microsoft/react-native"
],
"requirements": {
"development": [
"react-native@0.78"
],
"production": [
"react-native@0.73 || 0.74 || 0.75 || 0.76 || 0.77 || 0.78"
]
},
"capabilities": [
"babel-preset-react-native",
"core",
"core-android",
"core-ios",
"core-macos",
"core-win32",
"core-windows",
"react",
"svg"
]
}
},
"peerDependenciesMeta": {
"@office-iss/react-native-win32": {
"optional": true
},
"react-native-macos": {
"optional": true
},
"react-native-windows": {
"optional": true
}
}
}