-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 3.87 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 3.87 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@threadlines/monorepo",
"private": true,
"type": "module",
"scripts": {
"prepare": "effect-tsgo patch",
"dev": "node scripts/dev-runner.ts dev",
"dev:server": "node scripts/dev-runner.ts dev:server",
"dev:web": "node scripts/dev-runner.ts dev:web",
"dev:marketing": "vp run --filter @threadlines/marketing dev",
"dev:desktop": "node scripts/dev-runner.ts dev:desktop",
"start": "vp run --filter @threadlines/server start",
"start:desktop": "vp run --filter @threadlines/desktop start",
"start:marketing": "vp run --filter @threadlines/marketing preview",
"start:mock-update-server": "node scripts/mock-update-server.ts",
"marketing:studio": "node scripts/marketing-studio.ts launch",
"marketing:studio:native": "node scripts/marketing-studio.ts launch-native",
"marketing:studio:paths": "node scripts/marketing-studio.ts paths",
"marketing:studio:reset": "node scripts/marketing-studio.ts reset",
"marketing:studio:setup": "node scripts/marketing-studio.ts setup",
"marketing:media:audit-corners": "node scripts/audit-marketing-media-corners.ts",
"marketing:capture:prepare": "node scripts/marketing-media.ts prepare",
"marketing:capture:preflight": "node scripts/marketing-media.ts preflight",
"marketing:capture:record": "node scripts/marketing-media.ts record",
"marketing:capture:still": "node scripts/marketing-media.ts still",
"marketing:media:export": "node scripts/marketing-media.ts export",
"marketing:media:postflight": "node scripts/marketing-media.ts postflight",
"build": "vp run --filter './apps/*' --filter './packages/*' --filter './oxlint-plugin-threadlines' --filter './scripts' build",
"check:web-bundle-size": "node scripts/check-web-bundle-size.ts",
"build:marketing": "vp run --filter @threadlines/marketing build",
"build:desktop": "vp run --filter @threadlines/desktop --filter @threadlines/server build",
"typecheck": "vp run -r --concurrency-limit 2 --cache typecheck",
"tc": "vp run -r --concurrency-limit 2 --cache typecheck",
"lint": "vp lint --report-unused-disable-directives",
"test": "vp run -r test",
"test:desktop-smoke": "vp run --filter @threadlines/desktop smoke-test",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"build:contracts": "vp run --filter @threadlines/contracts build",
"dist:desktop:artifact": "node scripts/build-desktop-artifact.ts",
"dist:desktop:dmg": "node scripts/build-desktop-artifact.ts --platform mac --target dmg",
"dist:desktop:dmg:arm64": "node scripts/build-desktop-artifact.ts --platform mac --target dmg --arch arm64",
"dist:desktop:dmg:x64": "node scripts/build-desktop-artifact.ts --platform mac --target dmg --arch x64",
"dist:desktop:linux": "node scripts/build-desktop-artifact.ts --platform linux --target AppImage --arch x64",
"dist:desktop:win": "node scripts/build-desktop-artifact.ts --platform win --target nsis",
"dist:desktop:win:arm64": "node scripts/build-desktop-artifact.ts --platform win --target nsis --arch arm64",
"dist:desktop:win:x64": "node scripts/build-desktop-artifact.ts --platform win --target nsis --arch x64",
"release:smoke": "node scripts/release-smoke.ts",
"release:content": "node scripts/generate-release-content.ts",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/dist apps/*/dist-electron packages/*/dist .vite-plus apps/*/.vite-plus packages/*/.vite-plus",
"sync:vscode-icons": "node scripts/sync-vscode-icons.mjs"
},
"devDependencies": {
"@effect/tsgo": "catalog:",
"@oxlint/plugins": "^1.76.0",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26"
},
"packageManager": "pnpm@10.24.0",
"msw": {
"workerDirectory": [
"apps/web/public"
]
}
}