-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 KB
/
package.json
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
{
"name": "react-native-nitro-image",
"version": "0.21.0",
"description": "A fast in-memory Image object built with Nitro Modules.",
"main": "lib/index",
"module": "lib/index",
"types": "lib/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"react-native.config.js",
"lib",
"android/build.gradle",
"android/gradle.properties",
"android/CMakeLists.txt",
"android/src",
"ios/**/*.h",
"ios/**/*.m",
"ios/**/*.mm",
"ios/**/*.cpp",
"ios/**/*.swift",
"app.plugin.js",
"*.podspec",
"README.md"
],
"keywords": [
"react-native",
"nitro",
"image"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrousavy/nitro.git"
},
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrousavy/nitro/issues"
},
"homepage": "https://github.com/mrousavy/nitro#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"postinstall": "bun build || exit 0;",
"build": "bun tsc",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
"build-nitrogen-first": "cd ../react-native-nitro-modules && bun tsc && cd ../nitrogen && bun tsc",
"specs": "bun build-nitrogen-first && bun run nitro-codegen --logLevel=\"debug\"",
"specs-ci": "bun run nitro-codegen --logLevel=\"debug\"",
"clean": "rm -rf android/build node_modules/**/android/build lib"
},
"devDependencies": {
"@types/jest": "*",
"@types/react": "*",
"jest": "*",
"nitro-codegen": "*",
"react": "18.3.1",
"react-native": "0.77.0",
"react-native-nitro-modules": "*"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
}
}