-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
78 lines (78 loc) · 2.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "whatwg-node-monorepo",
"private": true,
"workspaces": [
"packages/*",
"e2e/*",
"benchmarks/*"
],
"packageManager": "yarn@1.22.22",
"scripts": {
"build": "bob build",
"ci:lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts . --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": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts .",
"postinstall": "patch-package && husky",
"prebuild": "yarn clean-dist",
"prerelease": "yarn build",
"prerelease-canary": "yarn 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:leaks": "LEAK_TEST=1 jest --detectOpenHandles --detectLeaks --runInBand --forceExit",
"ts:check": "tsc --noEmit"
},
"optionalDependencies": {
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.51.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-explicit-resource-management": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@theguild/prettier-config": "3.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"babel-jest": "29.7.0",
"bob-the-bundler": "7.0.1",
"bun": "1.1.42",
"cross-env": "7.0.3",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-standard": "5.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"node-libcurl": "npm:@ardatan/node-libcurl@4.0.4",
"patch-package": "8.0.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"resolutions": {
"@pulumi/pulumi": "3.144.1"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,js,json}": [
"prettier --write"
]
}
}