-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 KB
/
package.json
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
{
"name": "workers-packages",
"version": "1.0.0",
"private": true,
"description": "All of my Cloudflare Workers-related NPM packages",
"author": {
"name": "Jacob Hands",
"url": "https://twitter.com/jachands"
},
"sideEffects": false,
"scripts": {
"changeset:new": "run-changeset-new",
"check:ci": "turbo check:ci --log-order=grouped",
"test:ci": "run-vitest-ci",
"check:deps": "runx check -l",
"check:format": "prettier . --check --cache --ignore-unknown",
"chore:update:deps": "run-update-deps",
"chore:update:tools": "run-s chore:update:tools:* fix:deps",
"chore:update:tools:pnpm": "runx update-pnpm",
"chore:update:tools:turbo": "pnpx @turbo/codemod@latest update",
"fix": "run-s fix:*",
"fix:deps": "run-fix-deps",
"fix:lint": "FIX_ESLINT=1 turbo check:lint",
"fix:format": "prettier --write --cache --ignore-unknown \"**/*.{ts,tsx,cjs,md,json}\"",
"test": "vitest --testTimeout=15000",
"release": "run-s build:packages release:clean publish",
"build:packages": "turbo build -F './packages/*'",
"release:clean": "runx release clean",
"publish": "changeset publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.3",
"@changesets/cli": "2.27.11",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@repo/eslint-config": "workspace:*",
"@repo/tools": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "2.3.3",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.6",
"slugify": "1.6.6",
"syncpack": "13.0.0",
"tsx": "4.19.2",
"turbo": "2.3.3",
"typescript": "5.5.4",
"vitest": "2.1.1",
"wrangler": "3.101.0",
"yaml": "2.7.0",
"zod": "3.24.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/node": "20.8.3"
}
}
}