-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.98 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.98 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
{
"name": "@react-native-harness/runtime",
"description": "The core test runtime that executes on React Native devices, providing Jest-compatible APIs (describe, it, expect) and managing test collection, execution, and result reporting in native environments.",
"version": "1.0.0-alpha.24",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./polyfills/harness-module-system": {
"import": "./assets/harness-module-system.js",
"default": "./assets/harness-module-system.js"
},
"./entry-point": {
"development": "./src/entry-point.ts",
"types": "./dist/entry-point.d.ts",
"import": "./dist/entry-point.js",
"default": "./dist/entry-point.js"
},
"./jsx-runtime": {
"development": "./src/jsx/jsx-runtime.ts",
"import": "./dist/jsx/jsx-runtime.js",
"default": "./dist/jsx/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"development": "./src/jsx/jsx-dev-runtime.ts",
"import": "./dist/jsx/jsx-dev-runtime.js",
"default": "./dist/jsx/jsx-dev-runtime.js"
}
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"@react-native-harness/bridge": "workspace:*",
"@vitest/expect": "4.0.16",
"@vitest/spy": "4.0.16",
"chai": "^6.2.2",
"event-target-shim": "^6.0.2",
"use-sync-external-store": "^1.6.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@types/chai": "^5.2.2"
},
"author": {
"name": "Szymon Chmal",
"email": "szymon.chmal@callstack.com"
},
"homepage": "https://github.com/callstackincubator/react-native-harness",
"repository": {
"type": "git",
"url": "https://github.com/callstackincubator/react-native-harness.git"
},
"license": "MIT"
}