forked from callstackincubator/react-native-node-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "@react-native-node-api/root",
"description": "Node-API Modules for React Native",
"type": "module",
"private": true,
"workspaces": [
"apps/test-app",
"packages/gyp-to-cmake",
"packages/cmake-rn",
"packages/ferric",
"packages/host",
"packages/node-addon-examples",
"packages/ferric-example"
],
"homepage": "https://github.com/callstackincubator/react-native-node-api#readme",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"dev": "tsc --build --watch",
"lint": "eslint .",
"prettier:check": "prettier --experimental-cli --check .",
"prettier:write": "prettier --experimental-cli --write .",
"test": "npm run test --workspace react-native-node-api --workspace cmake-rn --workspace gyp-to-cmake --workspace node-addon-examples",
"bootstrap": "npm run build && npm run bootstrap --workspaces --if-present",
"prerelease": "npm run build && npm run prerelease --workspaces --if-present",
"release": "changeset publish"
},
"author": {
"name": "Callstack",
"url": "https://github.com/callstackincubator"
},
"contributors": [
{
"name": "Kræn Hansen",
"url": "https://github.com/kraenhansen"
},
{
"name": "Jamie Birch",
"url": "https://github.com/shirakaba"
}
],
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.19.0",
"@prettier/plugin-oxc": "^0.0.4",
"@reporters/github": "^1.7.2",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/react-native": "3.0.5",
"@types/node": "^22.13.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.0.0",
"prettier": "^3.6.2",
"react-native": "0.79.5",
"tsx": "^4.20.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}