-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.81 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "whatwg-node-monorepo",
"private": true,
"workspaces": [
"packages/*",
"e2e/*",
"benchmarks/*"
],
"packageManager": "npm@12.0.2",
"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:browser": "vitest run --config vitest.browser.config.mts",
"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": "https://github.com/uNetworking/uWebSockets.js.git#v20.70.0"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/plugin-transform-class-properties": "8.0.1",
"@babel/plugin-transform-explicit-resource-management": "8.0.1",
"@babel/preset-env": "8.0.2",
"@babel/preset-typescript": "8.0.1",
"@changesets/changelog-github": "1.0.1",
"@changesets/cli": "3.0.2",
"@eslint/eslintrc": "3.3.7",
"@eslint/js": "10.0.1",
"@jest/globals": "30.4.1",
"@theguild/prettier-config": "3.0.1",
"@types/deno": "2.7.0",
"@types/node": "26.5.1",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@typescript-eslint/eslint-plugin": "8.70.0",
"@typescript-eslint/parser": "8.70.0",
"@typescript/native": "npm:typescript@7.0.2",
"babel-jest": "30.4.1",
"bob-the-bundler": "7.0.1",
"bun": "1.4.2",
"cookie": "2.0.1",
"deno": "2.9.6",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "18.3.0",
"eslint-plugin-promise": "7.3.0",
"globals": "17.12.0",
"husky": "9.1.7",
"jest": "30.4.2",
"lint-staged": "17.5.1",
"lodash": "4.18.1",
"patch-package": "8.0.1",
"prettier": "3.9.6",
"puppeteer": "25.10.0",
"qs": "6.16.0",
"rimraf": "6.1.3",
"tar": "7.5.22",
"typescript": "npm:@typescript/typescript6@6.0.2",
"undici": "8.10.2",
"vite-tsconfig-paths": "6.1.1",
"vitest": "5.0.0"
},
"overrides": {
"@pulumi/pulumi": "3.262.0",
"cookie": "2.0.1",
"esbuild": "0.28.2",
"glob": "13.0.6",
"lodash": "4.18.1",
"miniflare": {
"undici": "8.10.2"
},
"next": {
"postcss": "8.5.28"
},
"qs": "6.16.0",
"tar": "7.5.22",
"tmp": "0.2.7",
"undici": "8.10.2",
"vite": "8.3.0"
},
"allowScripts": {
"bun@1.4.0": true,
"deno@2.9.6": true,
"esbuild@0.28.1": true,
"esbuild@0.28.2": true,
"workerd@1.20260903.1": true,
"protobufjs@7.6.6": true,
"unrs-resolver@1.12.2": true,
"puppeteer@25.10.0": true
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=10.8.2"
}
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,js,mjs,cjs,json}": [
"prettier --write"
]
}
}