-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "@repo/workers-packages",
"version": "1.0.0",
"private": true,
"description": "All of my Cloudflare Workers-related NPM packages",
"author": {
"name": "Jacob Hands",
"url": "https://github.com/jahands"
},
"sideEffects": false,
"scripts": {
"build:packages": "turbo build -F './npm-apps/*' -F './npm-pkgs/*'",
"check:deps": "runx check --deps",
"check:format": "runx check --format",
"check:lint:all": "run-eslint",
"check:turbo-config": "turbo-config check",
"postinstall": "turbo-config --skip-in-ci",
"publish": "changeset publish",
"release": "run-s build:packages release:clean publish",
"release:clean": "runx release clean",
"test": "vitest",
"test:ci": "run-vitest-ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.1",
"@babel/plugin-transform-explicit-resource-management": "7.28.0",
"@changesets/cli": "2.29.7",
"@cloudflare/vitest-pool-workers": "0.9.13",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@repo/eslint-config": "workspace:*",
"@repo/tools": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@repo/workspace-dependencies": "workspace:*",
"@turbo/gen": "2.5.8",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"prettier-plugin-packagejson": "2.5.19",
"syncpack": "13.0.4",
"turbo": "2.5.8",
"turbo-config": "npm:turbo-config@0.3.1",
"typescript": "5.8.2",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.33.0"
}