forked from golbin/hop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 727 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "hop",
"version": "0.1.5",
"private": true,
"description": "HOP is Open HWP",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build:studio": "pnpm --filter @golbin/hop-studio-host build",
"build:desktop": "pnpm --filter hop-desktop build",
"tauri": "pnpm --filter hop-desktop tauri",
"test": "pnpm run test:upstream && pnpm run test:studio && pnpm run test:desktop",
"test:upstream": "node --test tests/update-upstream.test.mjs",
"test:studio": "pnpm --filter @golbin/hop-studio-host test",
"test:desktop": "cd apps/desktop/src-tauri && cargo test",
"clippy:desktop": "cd apps/desktop/src-tauri && cargo clippy -- -D warnings"
}
}