-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.78 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
110
111
112
113
114
{
"name": "react-native-apple-llm",
"version": "1.0.16",
"description": "React Native plugin for Apple Intelligence and Foundation Models",
"author": {
"name": "Ahmed kasem",
"email": "ahmed.a.kasem18@gmail.com"
},
"homepage": "https://github.com/deveix/react-native-apple-llm",
"repository": {
"type": "git",
"url": "https://github.com/deveix/react-native-apple-llm.git"
},
"bugs": {
"url": "https://github.com/deveix/react-native-apple-llm/issues"
},
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"source": "src/index.tsx",
"sideEffects": false,
"keywords": [
"react-native",
"apple",
"apple-intelligence",
"foundation-models",
"llm",
"local-llm",
"react-native-plugin",
"react-native-apple-llm",
"apple-foundation-models",
"apple-llm",
"ai",
"on-device-llm",
"machine-learning",
"ios",
"swift",
"chatbot",
"natural-language-processing",
"nlp",
"text-generation",
"structured-output",
"json-schema",
"offline-ai",
"privacy-focused-ai",
"mobile-ai",
"ios-llm",
"react-native-ai",
"apple-silicon",
"neural-engine",
"siri-intelligence",
"core-ml",
"on-device-inference"
],
"files": [
"src",
"lib",
"android",
"ios",
"*.podspec",
"react-native.config.js"
],
"scripts": {
"build": "bob build",
"release": "release-it",
"lint": "npm run lint:ts && npm run lint:swift",
"lint-fix": "npm run lint-fix:ts && npm run lint-fix:swift",
"lint:ts": "prettier .",
"lint-fix:ts": "prettier --write .",
"lint:swift": "swiftlint ios",
"lint-fix:swift": "swiftlint --fix ios"
},
"dependencies": {
"events": "^3.3.0"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.80.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.1.0",
"@release-it/conventional-changelog": "^5.1.1",
"@types/react": "^18.2.12",
"@types/react-native": "^0.70.14",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"metro-react-native-babel-preset": "^0.73.10",
"prettier": "^3.7.4",
"react": "18.2.0",
"react-native": "0.80.1",
"react-native-builder-bob": "^0.20.4",
"release-it": "^15.11.0",
"typescript": "^5.1.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"codegenConfig": {
"name": "AppleLLMModuleSpec",
"type": "modules",
"jsSrcsDir": "./src"
}
}