-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"name": "@react-native-node-api/node-tests",
"version": "0.1.0",
"description": "Harness for running the Node.js tests from https://github.com/nodejs/node/tree/main/test",
"type": "commonjs",
"main": "tests.generated.js",
"files": [
"dist",
"tests/**/*.js",
"**/*.apple.node/**",
"**/*.android.node/**"
],
"private": true,
"homepage": "https://github.com/callstackincubator/react-native-node-api",
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/react-native-node-api.git",
"directory": "packages/node-tests"
},
"scripts": {
"copy-tests": "tsx scripts/copy-tests.mts",
"gyp-to-cmake": "gyp-to-cmake ./tests",
"build-tests": "tsx scripts/build-tests.mts",
"bundle": "rolldown -c rolldown.config.mts",
"generate-entrypoint": "tsx scripts/generate-entrypoint.mts",
"bootstrap": "node --run copy-tests && node --run gyp-to-cmake && node --run build-tests && node --run bundle && node --run generate-entrypoint"
},
"devDependencies": {
"cmake-rn": "*",
"gyp-to-cmake": "*",
"prebuildify": "^6.0.1",
"react-native-node-api": "^0.6.1",
"read-pkg": "^9.0.1",
"rolldown": "1.0.0-beta.29"
}
}