forked from vercel/workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "workflow-workspace",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/cli": "^2.29.5",
"@vitest/coverage-v8": "catalog:",
"esbuild": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"turbo": "^2.5.4",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0 || ^24.0.0"
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"pnpm": {
"overrides": {
"rfc6902": "5.1.2"
},
"onlyBuiltDependencies": [
"bun"
]
},
"scripts": {
"prepare": "husky",
"build": "turbo build --filter='./packages/*'",
"test": "turbo test",
"clean": "turbo clean",
"typecheck": "turbo typecheck",
"test:e2e": "vitest run packages/core/e2e/e2e.test.ts",
"bench": "vitest bench packages/core/e2e/bench.bench.ts",
"bench:local": "DEPLOYMENT_URL=http://localhost:3000 APP_NAME=nextjs-turbopack vitest bench packages/core/e2e/bench.bench.ts",
"lint": "biome check",
"format": "biome format --write",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:publish": "pnpm build && pnpm publish -r"
},
"lint-staged": {
"**/*": "biome format --write --no-errors-on-unmatched"
}
}