-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@react-native-node-api/root",
"description": "Node-API Modules for React Native",
"type": "module",
"private": true,
"workspaces": [
"packages/cli-utils",
"packages/cmake-file-api",
"packages/weak-node-api",
"packages/cmake-rn",
"packages/ferric",
"packages/gyp-to-cmake",
"packages/host",
"packages/node-addon-examples",
"packages/node-tests",
"packages/ferric-example",
"apps/test-app"
],
"homepage": "https://github.com/callstackincubator/react-native-node-api#readme",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean && git clean -fdx -e node_modules",
"dev": "tsc --build --watch",
"lint": "eslint .",
"depcheck": "node scripts/depcheck.ts",
"publint": "node scripts/run-in-published.ts npx publint --strict",
"prettier:check": "prettier --experimental-cli --check .",
"prettier:write": "prettier --experimental-cli --write .",
"test": "npm test --workspace react-native-node-api --workspace cmake-rn --workspace gyp-to-cmake --workspace node-addon-examples",
"bootstrap": "node --run build && npm run bootstrap --workspaces --if-present",
"changeset": "changeset",
"release": "changeset publish",
"prerelease": "node --run build && npm run prerelease --workspaces --if-present && node --run publint",
"init-macos-test-app": "node scripts/init-macos-test-app.ts"
},
"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"
},
{
"name": "Mariusz Pasiński",
"url": "https://github.com/mani3xis"
},
{
"name": "Kamil Paradowski",
"url": "https://github.com/paradowstack"
}
],
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.32.0",
"@prettier/plugin-oxc": "^0.0.4",
"@reporters/github": "^1.7.2",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/react-native": "3.0.6",
"@types/node": "^22",
"depcheck": "^1.4.7",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.0.0",
"prettier": "^3.6.2",
"publint": "^0.3.15",
"react-native": "0.81.4",
"read-pkg": "^9.0.1",
"tsx": "^4.20.6",
"typescript": "^5.8.0",
"typescript-eslint": "^8.38.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0"
},
"packageManager": {
"name": "npm",
"version": "^11.0.0"
}
}
}