-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "react-native-nitro-buffer",
"version": "0.2.2",
"description": "The fastest, 100% Node.js-compatible Buffer implementation for React Native, powered by Nitro Modules and C++.",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "src/index.ts",
"scripts": {
"build": "npx nitrogen@0.35.0 && tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-native",
"ios",
"android",
"buffer",
"node-buffer",
"nitro"
],
"author": "iwater <iwater@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/iwater/react-native-nitro-buffer.git"
},
"homepage": "https://github.com/iwater/react-native-nitro-buffer#readme",
"bugs": {
"url": "https://github.com/iwater/react-native-nitro-buffer/issues"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "^0.35.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^18.19.130",
"@types/react": "*",
"jest": "^29.0.0",
"react-native-nitro-modules": "^0.35.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"packageManager": "yarn@4.12.0",
"files": [
"lib/",
"src/",
"cpp/",
"ios/",
"android/",
"nitrogen/",
"*.podspec"
]
}