-
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) · 938 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 938 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
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "react-native-node-api-cmake",
"version": "0.1.0",
"description": "Build React Native Node API modules with CMake",
"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/react-native-node-api-cmake"
},
"type": "module",
"bin": {
"react-native-node-api-cmake": "./bin/react-native-node-api-cmake.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"start": "tsx src/run.ts",
"test": "tsx --test"
},
"dependencies": {
"@commander-js/extra-typings": "^13.1.0",
"bufout": "^0.3.1",
"chalk": "^5.4.1",
"cmake-js": "^7.3.1",
"commander": "^13.1.0",
"ora": "^8.2.0"
},
"peerDependencies": {
"node-addon-api": "^8.3.1",
"node-api-headers": "^1.5.0"
}
}