-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.09 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.09 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
{
"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",
"dev": "tsx ./scripts/dev.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 typecheck && pnpm schema:check && pnpm test && pnpm benchmark:check && pnpm build",
"version-packages": "changeset version && oxlint --fix --quiet && oxfmt --write ."
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@cloudflare/workers-types": "^4.20260603.1",
"@types/node": "^25.9.1",
"@typescript/native-preview": "7.0.0-dev.20260603.1",
"alchemy": "0.93.10",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"prettier-plugin-astro": "^0.14.1",
"rolldown": "^1.0.3",
"tsx": "^4.22.4",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.5.0"
}