-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@libtmux/repo",
"private": true,
"workspaces": [
"packages/*",
"examples",
"examples/*"
],
"type": "module",
"scripts": {
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"prelint": "bun run --cwd packages/libtmux build",
"lint": "oxlint . --ignore-pattern packages/libtmux/tests/fixtures/type-aware-lint/** --deny-warnings --report-unused-disable-directives && bun packages/libtmux/scripts/check-type-aware-lint.ts && bun scripts/check-testkit-boundary.ts",
"typecheck:readme": "bun scripts/check-readme.ts",
"test:docs": "bun scripts/check-readme-runs.ts",
"docs:comments": "bun scripts/check-doc-comments.ts",
"docs:links": "bun scripts/check-doc-links.ts",
"docs:claims": "bun scripts/check-doc-claims.ts",
"docs:runnable": "bun scripts/check-doc-runnable.ts",
"test:namespace": "bun scripts/check-test-namespace.ts",
"ci:config": "bun scripts/check-ci-config.ts",
"typecheck:tooling": "tsc -p tsconfig.tooling.json"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@types/bun": "1.4.2",
"@types/node": "22.20.1",
"oxfmt": "0.68.0",
"oxlint": "1.83.0",
"oxlint-tsgolint": "7.0.2001",
"publint": "0.3.24",
"typescript": "7.0.2"
},
"overrides": {
"@types/node": "22.20.1"
},
"engines": {
"bun": ">=1.3.14",
"node": ">=22"
},
"packageManager": "bun@1.4.2"
}