This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.71 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.71 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
{
"scripts": {
"format": "prettier --log-level log --write \"**/*.{js,jsx,html,css}\"",
"dev": "vite --port 9999 --host -- use-remote-models",
"css-update": "npx tailwindcss -i ./style/tailwind-input.css -o ./style/tailwind.css --watch",
"generate-ssl": "openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem",
"prod:github": "vite build -- use-remote-models && node build_scripts.js --github",
"prod:use-remote-models": "vite build -- use-remote-models && node build_scripts.js --use-remote-models",
"prod": "vite build && node build_scripts.js",
"startup": "cd ./dist && http-server -S -C ../cert.pem -K ../key.pem -o",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepare": "husky && husky install"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"adm-zip": "^0.5.12",
"eslint": "^9.39.2",
"eslint-config-google": "^0.14.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"globals": "^15.8.0",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"vite": "^6.4.1",
"vite-plugin-top-level-await": "^1.4.1"
},
"dependencies": {
"@mediapipe/tasks-genai": "0.10.14",
"@xenova/transformers": "github:xenova/transformers.js#aadeed936af7cc9049e1d238fd4ec70545dfd508",
"dompurify": "^3.2.4",
"eslint-config-prettier": "^10.1.8",
"highlight.js": "11.9.0",
"marked": "12.0.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.css": [
"prettier --check"
]
}
}