-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.67 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
{
"name": "@caplets/core-mono",
"private": true,
"type": "module",
"scripts": {
"alchemy:deploy": "tsx ./infra/alchemy-runner.ts deploy",
"alchemy:destroy": "tsx ./infra/alchemy-runner.ts destroy",
"alchemy:dev": "tsx ./infra/alchemy-runner.ts dev",
"benchmark": "pnpm --filter @caplets/benchmarks benchmark",
"benchmark:check": "pnpm --filter @caplets/benchmarks benchmark:check",
"benchmark:live": "pnpm --filter @caplets/benchmarks benchmark:live",
"benchmark:live:opencode": "pnpm --filter @caplets/benchmarks benchmark:live:opencode",
"benchmark:live:pi": "pnpm --filter @caplets/benchmarks benchmark:live:pi",
"build": "turbo build",
"build:watch": "turbo build:watch",
"changeset": "changeset",
"clean": "turbo clean",
"clean-install": "rm -rf **/node_modules pnpm-lock.yaml && pnpm install",
"code-mode:check-api": "node scripts/generate-code-mode-runtime-api.mjs --check",
"code-mode:generate-api": "node scripts/generate-code-mode-runtime-api.mjs",
"dev": "tsx ./scripts/dev.ts",
"docs:check": "tsx ./scripts/generate-docs-reference.ts --check && tsx ./scripts/check-public-docs.ts",
"docs:generate": "tsx ./scripts/generate-docs-reference.ts",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"lint:staged": "lint-staged",
"prepare": "husky",
"release": "turbo build && changeset publish",
"schema:check": "tsx ./scripts/generate-config-schema.ts --check",
"schema:generate": "tsx ./scripts/generate-config-schema.ts",
"test": "vitest run",
"typecheck": "tsgo --noEmit && turbo typecheck",
"verify": "pnpm format:check && pnpm lint && pnpm code-mode:check-api && pnpm schema:check && pnpm docs:check && pnpm typecheck && pnpm test && pnpm benchmark:check && pnpm build",
"version-packages": "changeset version && oxlint --fix --quiet && oxfmt --write .",
"benchmark:live:pi-eval": "pnpm --filter @caplets/benchmarks benchmark:live:pi-eval",
"benchmark:live:pi-eval:competitors": "pnpm --filter @caplets/benchmarks benchmark:live:pi-eval:competitors"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@cloudflare/workers-types": "^4.20260613.1",
"@types/node": "^25.9.3",
"@typescript/native-preview": "7.0.0-dev.20260613.1",
"alchemy": "0.93.12",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"prettier-plugin-astro": "^0.14.1",
"rolldown": "^1.1.1",
"tsx": "^4.22.4",
"turbo": "^2.9.18",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.5.0"
}