-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.64 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.64 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@fluentui-react-native/tester-win32",
"version": "0.1.0",
"private": true,
"description": "Fluent UI React Native Win32 Tester App",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "apps/win32"
},
"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",
"bundle": "rnx-cli bundle --dev false",
"bundle-dev": "rnx-cli bundle",
"clean": "fluentui-scripts clean",
"depcheck": "fluentui-scripts depcheck",
"format": "fluentui-scripts format",
"lint": "fluentui-scripts eslint",
"lint-package": "fluentui-scripts lint-package",
"run-win32": "rex-win32 --bundle index.win32 --component FluentTester --basePath ./dist --useDirectDebugger --windowTitle \"FluentUI Tester\" --pluginProps --debugBundlePath index --jsEngine v8",
"run-win32-dev": "rex-win32 --bundle index --component FluentTester --basePath ./dist --useDirectDebugger --windowTitle \"FluentUI Tester\" --pluginProps --debugBundlePath index --jsEngine v8 --useFastRefresh",
"run-win32-devmain": "rex-win32 --bundle index.win32 --component FluentTester --basePath ./dist --useDirectDebugger --windowTitle \"FluentUI Tester\" --pluginProps --debugBundlePath index --jsEngine v8 --useDevMain ",
"run-win32-devmain-dev": "rex-win32 --bundle index --component FluentTester --basePath ./dist --useDirectDebugger --windowTitle \"FluentUI Tester\" --pluginProps --debugBundlePath index --jsEngine v8 --useFastRefresh --useDevMain",
"start": "rnx-cli start"
},
"dependencies": {
"@fluentui-react-native/tester-core": "workspace:*",
"@office-iss/react-native-win32": "^0.74.0",
"@types/react": "~18.2.0",
"react": "18.2.0",
"react-native": "^0.74.0",
"react-native-svg": ">=15.4.0 <15.13.0"
},
"devDependencies": {
"@babel/core": "catalog:",
"@babel/runtime": "catalog:",
"@fluentui-react-native/babel-config": "workspace:*",
"@fluentui-react-native/eslint-config-rules": "workspace:*",
"@fluentui-react-native/kit-config": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@office-iss/rex-win32": "0.73.11-devmain.16.0.17615.15030",
"@react-native-community/cli": "^13.6.4",
"@react-native-community/cli-platform-android": "^13.6.4",
"@react-native-community/cli-platform-ios": "^13.6.4",
"@react-native/babel-preset": "^0.74.0",
"@react-native/metro-babel-transformer": "^0.74.0",
"@react-native/metro-config": "^0.74.0",
"@rnx-kit/babel-preset-metro-react-native": "catalog:",
"@rnx-kit/cli": "catalog:",
"@rnx-kit/metro-config": "catalog:",
"@rnx-kit/metro-resolver-symlinks": "catalog:",
"@rnx-kit/metro-serializer-esbuild": "catalog:",
"@types/react-test-renderer": "^18.2.0",
"metro-config": "^0.80.3",
"oxc-resolver": "catalog:",
"react-native-svg-transformer": "^1.0.0",
"react-native-test-app": "^3.9.2",
"react-test-renderer": "18.2.0",
"rimraf": "catalog:"
},
"jest": {
"preset": "react-native"
},
"furn": {
"depcheck": {
"ignoreMatches": [
"@office-iss/react-native-win32"
]
}
},
"rnx-kit": {
"kitType": "app",
"bundle": [
{
"entryFile": "index.js",
"bundleOutput": "dist/index.win32.bundle",
"sourcemapOutput": "dist/index.win32.bundle.map",
"assetsDest": "dist",
"targets": [
"win32"
],
"plugins": [
[
"@rnx-kit/metro-plugin-cyclic-dependencies-detector",
{
"throwOnError": true
}
],
[
"@rnx-kit/metro-plugin-duplicates-checker",
{
"throwOnError": false,
"ignoredModules": [
"react-is"
]
}
]
]
}
],
"alignDeps": {
"requirements": {
"production": [
"react-native@0.74"
]
},
"capabilities": [
"babel-preset-react-native",
"community/cli",
"core-win32",
"core/metro-config",
"metro-react-native-babel-transformer",
"react",
"react-test-renderer",
"svg",
"test-app",
"tools-core"
]
},
"extends": "@fluentui-react-native/kit-config"
}
}