-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"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": "syncpack lint",
"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": {
"@changesets/cli": "2.27.9",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@repo/eslint-config": "workspace:*",
"@repo/tools": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "2.1.3",
"npm-run-all2": "6.2.3",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.2",
"slugify": "1.6.6",
"syncpack": "13.0.0",
"tsx": "4.19.1",
"turbo": "2.1.3",
"typescript": "5.5.4",
"vitest": "2.1.1",
"wrangler": "3.80.0",
"yaml": "2.5.1",
"zod": "3.23.8"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/node": "20.8.3"
}
}
}