-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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": "multizen",
"version": "0.2.5",
"private": true,
"description": "AI-native browser for agents and operators — desktop app + MCP server with anti-detect Chromium",
"homepage": "https://getmultizen.com",
"repository": {
"type": "git",
"url": "https://github.com/multizenteam/multizen-browser.git"
},
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "yarn workspace @multizen/desktop dev",
"build": "yarn workspaces foreach -A run build",
"typecheck": "yarn workspaces foreach -A run typecheck",
"lint": "yarn workspaces foreach -A run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,astro}\"",
"mcp:dev": "yarn workspace @multizen/mcp-server dev",
"clean": "rm -rf apps/*/dist apps/*/out packages/*/dist node_modules/.cache"
},
"devDependencies": {
"@types/node": "^22.10.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0"
},
"packageManager": "yarn@4.5.0",
"engines": {
"node": ">=20.0.0"
}
}