-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.86 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
{
"name": "docstube-monorepo",
"version": "0.0.2",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 build",
"build:cli": "pnpm --filter @docstube/web-ui build && tsdown apps/cli/src/cli.ts --format esm --dts --clean --target node24 --workspace . --out-dir apps/cli/dist && node scripts/release/stage-cli-assets.ts",
"changeset": "changeset",
"dev": "node scripts/dev.ts",
"dev:ui": "pnpm --filter @docstube/web-ui dev",
"dev:web": "pnpm --filter @docstube/web dev",
"dogfood:build": "pnpm --filter @docstube/core... build && node scripts/dogfood/build-dogfood.ts",
"evals": "node scripts/evals/run-evals.ts",
"evals:live": "node scripts/evals/run-evals.ts --live",
"format": "oxfmt --write package.json pnpm-workspace.yaml tsconfig.json tsconfig.base.json .oxlintrc.json .oxfmtrc.json stacktape.ts vitest.config.ts apps packages scripts evals .github/workflows",
"format:check": "oxfmt --check package.json pnpm-workspace.yaml tsconfig.json tsconfig.base.json .oxlintrc.json .oxfmtrc.json stacktape.ts vitest.config.ts apps packages scripts evals .github/workflows",
"lint": "oxlint apps packages scripts stacktape.ts *.config.ts --no-error-on-unmatched-pattern",
"release": "changeset publish",
"release:binary": "node scripts/release/build-binary.ts",
"release:install-scripts": "node scripts/release/prepare-install-scripts.ts",
"release:install-scripts:publish": "node scripts/release/publish-install-scripts.ts",
"release:set-version": "node scripts/release/set-version.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"stacktape:deploy": "stacktape deploy --projectName docstube --stage production --region eu-west-1",
"stacktape:deploy:preview": "stacktape deploy --projectName docstube --stage preview --region eu-west-1",
"stacktape:compile": "stacktape compile-template --projectName docstube --stage production --region eu-west-1",
"upg": "taze",
"validate": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run evals && pnpm run build",
"validate:fix": "oxlint apps packages scripts stacktape.ts *.config.ts --fix --no-error-on-unmatched-pattern && pnpm run format && pnpm run validate",
"version-packages": "changeset version",
"deploy:prod": "stacktape deploy --projectName docstube --stage production --region eu-west-1"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^24.12.0",
"@vitejs/plugin-react": "^6.0.2",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"stacktape": "^3.7.0",
"tar": "^7.5.2",
"taze": "^19.14.1",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=24.12.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.7.0"
}