-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 898 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 898 Bytes
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
{
"name": "httui-monorepo",
"private": true,
"license": "MIT",
"repository": "https://github.com/httuicom/httui",
"homepage": "https://httui.com",
"workspaces": [
"httui-desktop",
"httui-web",
"httui-sidecar"
],
"scripts": {
"dev": "npm --workspace httui-desktop run dev",
"build": "npm --workspace httui-desktop run build",
"tauri": "npm --workspace httui-desktop run tauri",
"lint": "npm --workspace httui-desktop run lint",
"format": "npm --workspace httui-desktop run format",
"test": "npm --workspace httui-desktop run test",
"test:watch": "npm --workspace httui-desktop run test:watch",
"test:coverage": "npm --workspace httui-desktop run test:coverage",
"web:dev": "npm --workspace httui-web run dev",
"web:build": "npm --workspace httui-web run build",
"sidecar:build": "npm --workspace httui-sidecar run build"
}
}