-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 917 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "react-native-node-addon-examples",
"private": true,
"homepage": "https://github.com/callstackincubator/react-native-node-api-modules",
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/react-native-node-api-modules.git",
"directory": "packages/node-addon-examples"
},
"scripts": {
"copy-examples": "tsx scripts/copy-examples.mts",
"gyp-to-cmake": "gyp-to-cmake ./examples",
"build": "tsx scripts/build-examples.mts",
"copy-and-build": "npm run copy-examples && npm run gyp-to-cmake && npm run build",
"verify": "tsx scripts/verify-prebuilds.mts",
"test": "npm run copy-and-build && npm run verify"
},
"devDependencies": {
"node-addon-examples": "github:nodejs/node-addon-examples#4213d4c9d07996ae68629c67926251e117f8e52a",
"gyp-to-cmake": "*",
"react-native-node-api-cmake": "*",
"read-pkg": "^9.0.1"
}
}