-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.65 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-native-ai-gateway",
"version": "0.1.0",
"description": "On-device AI for React Native: text, vision, speech and generative models via Apple Vision/NaturalLanguage/Speech/Foundation Models and Google ML Kit. Nothing leaves the device.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"./package.json": "./package.json",
"./app.plugin.js": "./app.plugin.js"
},
"sideEffects": false,
"files": [
"lib/",
"src/",
"!src/__tests__",
"ios/",
"android/",
"!android/build",
"app.plugin.js",
"react-native.config.js",
"README.md",
"LICENSE",
"react-native-ai-gateway.podspec"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"typecheck": "tsc --noEmit",
"typecheck:example": "tsc --noEmit -p example/tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome check .",
"prepublishOnly": "npm run check && npm run build"
},
"keywords": [
"react-native",
"on-device-ai",
"ondevice",
"offline-ai",
"local-ai",
"turbomodule",
"new-architecture",
"expo",
"ml-kit",
"gemini-nano",
"apple-intelligence",
"foundation-models",
"ocr",
"vision",
"speech-to-text",
"text-analysis",
"summarization",
"privacy",
"ios",
"android"
],
"author": "Anivar Aravind <anivar.aravind@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/anivar/react-native-ai-gateway#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/anivar/react-native-ai-gateway.git"
},
"bugs": {
"url": "https://github.com/anivar/react-native-ai-gateway/issues"
},
"funding": "https://github.com/sponsors/anivar",
"peerDependencies": {
"react": ">=19.0.0",
"react-native": ">=0.86.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@expo/config-plugins": "^54.0.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.0",
"jest": "^30.3.0",
"react": "^19.2.3",
"react-native": "0.86.2",
"ts-jest": "^29.4.4",
"typescript": "^6.0.3"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@10.9.0",
"codegenConfig": {
"name": "AIToolkitTurboModuleSpec",
"type": "modules",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.anivar.ondeviceai"
}
},
"type": "commonjs",
"dependencies": {
"ws": "^7.5.11"
}
}