-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.4 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
{
"name": "lanterm",
"private": true,
"workspaces": [
"examples/client",
"packages/protocol",
"packages/pty",
"packages/react",
"packages/server"
],
"type": "module",
"scripts": {
"build": "bun run --filter @lanterm/protocol build && bun run --filter @lanterm/pty build && bun run --filter @lanterm/react build && bun run --filter @lanterm/server build",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"pack:dry-run": "bun run build && npm pack --workspace @lanterm/protocol --workspace @lanterm/react --workspace @lanterm/server --dry-run --json",
"publish:dry-run": "bun run build && npm publish --workspace @lanterm/protocol --workspace @lanterm/react --workspace @lanterm/server --dry-run --access public",
"publish:packages": "bun run build && npm publish --workspace @lanterm/protocol --workspace @lanterm/react --workspace @lanterm/server --access public",
"typecheck": "bun run --filter @lanterm/protocol build && bun run --filter @lanterm/react build && bun run --filter @lanterm/protocol typecheck && bun run --filter @lanterm/pty typecheck && bun run --filter @lanterm/react typecheck && bun run --filter @lanterm/server typecheck && bun run --filter @lanterm/example-client typecheck"
},
"devDependencies": {
"oxfmt": "^0.50.0",
"oxlint": "^1.56.0",
"typescript": "^6.0.3"
}
}