-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.33 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.33 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
{
"name": "@fluentui-react-native/framework-base",
"version": "0.3.1",
"description": "Base types and utilities fluentui-react-native frameworks",
"keywords": [],
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native",
"directory": "packages/framework-base"
},
"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"
},
"./jsx-runtime": {
"types": "./lib/jsx-runtime.d.ts",
"import": "./lib/jsx-runtime.js",
"require": "./lib-commonjs/jsx-runtime.js",
"default": "./src/jsx-runtime.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 eslint",
"lint-package": "fluentui-scripts lint-package",
"start": "fluentui-scripts dev",
"start-test": "fluentui-scripts jest-watch",
"test": "fluentui-scripts jest",
"update-snapshots": "fluentui-scripts jest -u"
},
"devDependencies": {
"@babel/core": "catalog:",
"@fluentui-react-native/config": "workspace:*",
"@fluentui-react-native/eslint-config-rules": "workspace:*",
"@fluentui-react-native/kit-config": "workspace:*",
"@fluentui-react-native/react-configs": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@types/jest": "^29.0.0",
"@types/node": "catalog:",
"@types/react": "~19.1.4",
"react": "19.1.4",
"react-native": "^0.81.6"
},
"peerDependencies": {
"@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4",
"react": "18.2.0 || 19.0.0 || 19.1.4"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"rnx-kit": {
"extends": "@fluentui-react-native/kit-config",
"kitType": "library",
"alignDeps": {
"capabilities": [
"core-dev-only",
"react",
"tools-core",
"tools-eslint",
"tools-jest-react"
]
}
}
}