-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.56 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.56 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
{
"name": "react-native-grab",
"version": "1.0.0-rc.1",
"description": "Touch-to-grab context for React Native agents.",
"keywords": [
"devtools",
"inspector",
"metro",
"react-native"
],
"homepage": "https://github.com/callstackincubator/react-native-grab",
"bugs": {
"url": "https://github.com/callstackincubator/react-native-grab/issues"
},
"license": "MIT",
"author": "Szymon Chmal (https://x.com/chmalszymon)",
"repository": {
"type": "git",
"url": "https://github.com/callstackincubator/react-native-grab.git"
},
"files": [
"dist"
],
"main": "./dist/cjs/react-native/index.js",
"module": "./dist/esm/react-native/index.js",
"types": "./dist/types/react-native/index.d.ts",
"react-native": "./dist/esm/react-native/index.js",
"exports": {
".": {
"types": "./dist/types/react-native/index.d.ts",
"react-native": "./dist/esm/react-native/index.js",
"import": "./dist/esm/react-native/index.js",
"require": "./dist/cjs/react-native/index.js",
"default": "./dist/esm/react-native/index.js"
},
"./metro": {
"types": "./dist/types/metro/index.d.ts",
"import": "./dist/esm/metro/index.js",
"require": "./dist/cjs/metro/index.js",
"default": "./dist/esm/metro/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.build.esm.json",
"build:cjs": "tsc -p tsconfig.build.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"test": "vitest run",
"test:watch": "vitest",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"lint": "tsc --noEmit -p tsconfig.json",
"prepare": "husky"
},
"dependencies": {
"metro-config-transformers": "latest"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "latest",
"@types/react": "latest",
"husky": "^9.1.7",
"oxfmt": "latest",
"typescript": "latest",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@react-navigation/native": "*",
"expo-dev-menu": "*",
"expo-router": "*",
"react": ">=19",
"react-native": ">=0.80",
"react-native-screens": "*"
},
"peerDependenciesMeta": {
"@react-navigation/native": {
"optional": true
},
"expo-router": {
"optional": true
},
"react-native-screens": {
"optional": true
},
"expo-dev-menu": {
"optional": true
}
}
}