-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.62 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
{
"private": true,
"workspaces": [
"packages/*",
"packages/playground/backend",
"packages/playground/frontend"
],
"type": "module",
"scripts": {
"build:release-artifacts:devhost": "bun run ./apps/devhost/scripts/buildReleaseArtifacts.ts",
"build:devtools-bundle:devhost": "bun run ./apps/devhost/scripts/buildDevtoolsBundle.ts",
"check": "typescript-ai-policy check && bun run check:devhost && bun run --cwd packages/devhost-ui check && bun run --cwd packages/docs check",
"check:devhost": "./apps/devhost/scripts/check.sh",
"compile:devhost": "./apps/devhost/scripts/compile.sh",
"dev": "bun run build:devtools-bundle:devhost && DEVHOST_DEV_ASSETS_DIR=apps/devhost/internal/devtools/dist apps/devhost/bin/devhost --manifest devhost.toml",
"docs": "bun run --cwd packages/docs dev",
"install-browser": "bun x playwright install chromium",
"nvim": "bun run ./apps/devhost/scripts/startNvim.ts --project=packages/playground",
"postinstall": "bun run install-browser",
"storybook": "bun run --cwd packages/devhost-ui storybook",
"test:nvim": "bun run ./apps/devhost/internal/devtools/nvim/devhost-react-highlight.nvim/tests/run.ts",
"fix": "bun --bun oxfmt --write .",
"prepare": "husky",
"clean": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +"
},
"nano-staged": {
"*": "bun --bun oxfmt --write --no-error-on-unmatched-pattern"
},
"devDependencies": {
"@alexgorbatchev/typescript-ai-policy": "^10.0.0",
"bun-plugin-tailwind": "^0.1.2",
"husky": "^9.1.7",
"nano-staged": "^1.0.2",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0"
}
}