-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.19 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
{
"name": "d3vices.com",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Open-source browser hardware diagnostics. Test your mic, camera, screen, keyboard, sensors and inputs — in the browser, as an installable PWA, or as a native desktop app.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/d3vices.com.git"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run build:client && bun run --hot apps/web/src/main.js",
"start": "bun apps/web/src/main.js",
"build": "bun run build:client",
"build:client": "bun packages/tests/build.js",
"build:site": "bun run build:client && bun apps/web/src/export.js",
"migrate": "bun packages/db/src/migrate-cli.js",
"test": "bun test",
"lint": "bun run --bun biome check .",
"format": "bun run --bun biome format --write .",
"desktop": "bun run build:site && cd apps/desktop && bun run start",
"desktop:dist": "bun run build:site && cd apps/desktop && bun run dist"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.14",
"devDependencies": {
"@biomejs/biome": "^2.3.0"
}
}