-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "esku",
"private": true,
"version": "1.13.1",
"type": "module",
"description": "Offline PWA that reads Spanish Sign Language (LSE) from your phone camera and turns it into text",
"license": "MIT",
"author": "Endika Iglesias",
"homepage": "https://endika.github.io/esku/",
"repository": {
"type": "git",
"url": "git+https://github.com/Endika/esku.git"
},
"bugs": "https://github.com/Endika/esku/issues",
"scripts": {
"dev": "vite",
"predev": "node scripts/copy-wasm.mjs",
"build": "tsc && vite build",
"prebuild": "node scripts/copy-wasm.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"icons": "pwa-assets-generator"
},
"dependencies": {
"@mediapipe/tasks-vision": "^1.0.1",
"onnxruntime-web": "^1.23.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@types/node": "^26.1.2",
"@vite-pwa/assets-generator": "^1.0.2",
"fake-indexeddb": "^6.2.5",
"jsdom": "^30.0.1",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10",
"workbox-window": "^7.4.1"
},
"overrides": {
"sharp": "^0.35.0"
}
}