-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.22 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.22 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
{
"name": "proxyface",
"version": "0.1.0",
"private": true,
"description": "Privacy-first, edge-computed visual AI companion. 100% local inference.",
"license": "MIT",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "turbo run dev --parallel",
"dev:web": "turbo run dev --filter=@proxyface/web",
"dev:desktop": "cd apps/desktop && NODE_ENV=development electron .",
"dev:chrome": "turbo run dev --filter=@proxyface/chrome-ext",
"dev:firefox": "turbo run dev --filter=@proxyface/firefox-ext",
"build": "turbo run build",
"build:web": "turbo run build --filter=@proxyface/web",
"build:chrome": "turbo run build --filter=@proxyface/chrome-ext",
"build:firefox": "turbo run build --filter=@proxyface/firefox-ext",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"check:labels": "node scripts/check-labels-consistency.mjs",
"check": "pnpm check:labels && pnpm typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\""
},
"devDependencies": {
"turbo": "^2.1.3",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}