-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.02 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
{
"name": "react-native-nitro-tor",
"version": "0.6.0",
"description": "Tor Daemon and Onion Routing Client for React-Native",
"workspaces": [
"example"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"react-native": "./src/index.ts",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"README.md",
"src",
"dist",
"android",
"ios",
"cpp",
"*.podspec",
"react-native.config.js",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "yarn workspace ReactNativeNitroTorExample",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"build": "sh ./scripts/craby-build-env.sh craby build && tsdown",
"clean": "craby clean"
},
"keywords": [
"react-native",
"ios",
"android"
],
"author": "Nitesh Balusu <niteshbalusu@icloud.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/niteshbalusu11/react-native-nitro-tor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/niteshbalusu11/react-native-nitro-tor"
},
"homepage": "https://github.com/niteshbalusu11/react-native-nitro-tor#readme",
"dependencies": {
"craby-modules": "^0.1.0-rc.5"
},
"devDependencies": {
"@biomejs/biome": "2.2.7",
"@react-native-community/cli-types": "^20.0.2",
"@types/react": "^19.0.0",
"crabygen": "^0.1.0-rc.5",
"react": "19.2.0",
"react-native": "0.83.4",
"tsdown": "^0.15.10",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"packageManager": "yarn@4.10.3"
}