-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.39 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "whatwg-node-monorepo",
"private": true,
"workspaces": [
"packages/*",
"e2e/*",
"benchmarks/*"
],
"packageManager": "npm@11.12.1",
"scripts": {
"bench": "vitest bench --project bench",
"build": "bob build",
"ci:lint": "eslint . --output-file eslint_report.json --format json",
"clean-dist": "rimraf \"dist\" && rimraf \".bob\"",
"esm:check": "bob check",
"jest-with-gc": "node --expose-gc ./node_modules/.bin/jest",
"lint": "eslint .",
"postinstall": "patch-package && husky",
"prebuild": "npm run clean-dist",
"prerelease": "npm run build",
"prerelease-canary": "npm run build",
"pretest:deno": "npm run build",
"prettier": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check .",
"release": "changeset publish",
"test": "jest --runInBand --forceExit",
"test:bun": "bun test --bail",
"test:deno": "deno test ./packages/**/*.spec.ts --allow-all --fail-fast --no-check --unstable-sloppy-imports --trace-leaks",
"test:leaks": "LEAK_TEST=1 jest --detectOpenHandles --detectLeaks --runInBand --forceExit",
"ts:check": "tsc --noEmit --skipLibCheck",
"version": "changeset version"
},
"optionalDependencies": {
"node-libcurl": "4.1.0",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.64.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-explicit-resource-management": "7.27.4",
"@babel/preset-env": "7.29.2",
"@babel/preset-typescript": "7.28.5",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.31.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@jest/globals": "30.3.0",
"@theguild/prettier-config": "3.0.1",
"@types/deno": "2.5.0",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"babel-jest": "30.3.0",
"bob-the-bundler": "7.0.1",
"bun": "1.3.12",
"cookie": "1.1.1",
"deno": "2.7.12",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-standard": "5.0.0",
"globals": "17.5.0",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"lodash": "4.18.1",
"patch-package": "8.0.1",
"prettier": "3.8.3",
"qs": "6.15.1",
"rimraf": "6.1.3",
"tar": "7.5.13",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"undici": "8.1.0",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.4"
},
"overrides": {
"@pulumi/pulumi": "3.231.0",
"cookie": "1.1.1",
"esbuild": "0.28.0",
"glob": "13.0.6",
"lodash": "4.18.1",
"miniflare": {
"undici": "8.1.0"
},
"qs": "6.15.1",
"tar": "7.5.13",
"tmp": "0.2.5",
"undici": "8.1.0",
"vite": "8.0.8"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "^11.10.1"
}
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,js,mjs,cjs,json}": [
"prettier --write"
]
}
}