-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.54 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
{
"name": "@missionsquad/browserai",
"version": "0.1.0",
"description": "Run small open AI models entirely in the browser with WebGPU: model catalog, capability slots, WebLLM + Transformers.js + Kokoro inference, streaming, schema-constrained JSON, metrics, cache management, and a press-to-talk voice pipeline — as an embeddable, UI-free SDK.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./worker": {
"types": "./dist/webllm.worker.d.ts",
"default": "./dist/webllm.worker.js"
}
},
"files": [
"dist",
"src",
"worker-template",
"README.md"
],
"sideEffects": [
"./dist/webllm.worker.js"
],
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc --noEmit && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=20"
},
"keywords": [
"webgpu",
"webllm",
"transformers.js",
"onnx",
"browser",
"llm",
"stt",
"tts",
"kokoro",
"whisper",
"voice-assistant",
"local-ai"
],
"author": "Mission Squad",
"license": "ISC",
"dependencies": {
"@huggingface/transformers": "4.2.0",
"@mlc-ai/web-llm": "0.2.84"
},
"devDependencies": {
"@types/node": "24.10.4",
"typescript": "6.0.3",
"vitest": "4.1.9"
}
}