-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "react-zero-ai",
"version": "0.1.0",
"description": "React hooks for on-device AI — image classification, sentiment analysis, embeddings. Zero uploads, full privacy.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "node scripts/inline-worker.js && tsup src/index.ts --format cjs,esm --dts --clean --external react,react-dom",
"dev": "node scripts/inline-worker.js && tsup src/index.ts --format cjs,esm --dts --watch --external react,react-dom",
"test": "vitest",
"lint": "eslint src"
},
"keywords": [
"react",
"hooks",
"ai",
"machine-learning",
"transformers",
"image-classification",
"sentiment-analysis",
"privacy",
"on-device",
"offline",
"webassembly",
"onnx"
],
"author": "react-zero-ai team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/baskvava/react-zero-ai.git"
},
"homepage": "https://baskvava.github.io/react-zero-ai/",
"peerDependencies": {
"react": ">=18.0.0"
},
"dependencies": {
"@huggingface/transformers": "^3.3.3"
},
"devDependencies": {
"@types/react": "^18",
"react": "^18",
"tsup": "^8",
"typescript": "^5",
"vitest": "^4.0.18"
}
}