forked from microsoft/react-native-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.42 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
{
"name": "react-native-xaml",
"title": "React Native Xaml",
"version": "0.1.8",
"description": "Allows using XAML directly, inside of a React Native Windows app",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -b",
"codegen": "dotnet run --project Codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/react-native-xaml.git",
"baseUrl": "https://github.com/microsoft/react-native-xaml"
},
"keywords": [
"react-native",
"react-native-windows",
"XAML",
"WinUI",
"UWP",
"Fluent",
"Fluent UI",
"Windows"
],
"author": {
"name": "Alexander Sklar",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"dependencies": {
"@types/react": "*"
},
"peerDependencies": {
"react": ">= 18.0.0",
"react-native": ">= 0.69.0",
"react-native-windows": ">= 0.69.0",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/jest": "*",
"beachball": "^2.16.0",
"eslint": "^8.19.0",
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-windows": "0.73.4",
"react-native-typescript-transformer": "*",
"typescript": "5.0.4"
},
"files": [
"!*.tgz",
"CodeGen/*.cs*",
"CodeGen/*.json",
"tsconfig.json",
"*.cmd",
"windows/",
"lib/",
"src/",
"!*.ruleset"
]
}