-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.37 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
{
"name": "@httpx/compress",
"description": "Compression utilities",
"version": "0.3.5",
"license": "MIT",
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"homepage": "https://belgattitude.github.io/httpx/compress",
"repository": {
"type": "git",
"url": "git+https://github.com/belgattitude/httpx.git",
"directory": "packages/compress"
},
"keywords": [
"gzip",
"compress",
"stream"
],
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
"build": "run clean && yarn run tsup",
"build-release": "run build",
"bench": "vitest bench --run",
"bench-codspeed": "cross-env CODSPEED=1 vitest bench --run",
"bench-watch": "vitest bench",
"docgen": "run-s docgen-typedoc",
"docgen-typedoc": "rimraf ./docs/api && typedoc --plugin typedoc-plugin-markdown --out ./docs/api",
"check-dist": "run-s check-dist-esm check-dist-cjs",
"check-dist-cjs": "es-check --not './dist/*.map.js' -v es2023 './dist/**/*.cjs'",
"check-dist-esm": "es-check --not './dist/*.map.js' -v es2023 --module './dist/**/*.mjs'",
"check-pub": "attw --pack && publint",
"check-size": "size-limit",
"clean": "rimraf ./dist ./build ./coverage ./_release",
"dev": "tsup --watch",
"fix-staged": "lint-staged --allow-empty",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.mjs,.cjs,.mts,.cts --cache --cache-location ../../.cache/eslint/compress.eslintcache",
"test": "vitest run",
"test-unit": "vitest run",
"test-unit-coverage": "vitest run --coverage",
"test-unit-edge": "vitest run --environment edge-runtime",
"test-unit-browser": "vitest run --browser",
"test-unit-cloudflare": "vitest run --config ./vitest.cloudflare.config.ts",
"test-unit-watch": "vitest --ui --api 4515",
"typecheck": "tsc --project tsconfig.json --noEmit",
"typecheck-build": "tsc --project tsconfig.build.json --noEmit",
"ci-coverage-upload": "../../.github/scripts/download/codecov -F httpx-compress-unit --dir ./coverage"
},
"dependencies": {
"uint8array-extras": "^1.5.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@belgattitude/eslint-config-bases": "7.8.0",
"@httpx/devtools-vitest": "workspace:^",
"@sindresorhus/is": "7.1.0",
"@size-limit/file": "11.2.0",
"@size-limit/webpack": "11.2.0",
"browserslist": "4.26.2",
"browserslist-to-esbuild": "2.1.1",
"cross-env": "10.0.0",
"es-check": "9.3.1",
"esbuild": "0.25.9",
"eslint": "8.57.1",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"pretty-bytes": "7.0.1",
"publint": "0.3.12",
"rimraf": "6.0.1",
"size-limit": "11.2.0",
"tsup": "8.5.0",
"typedoc": "0.28.13",
"typedoc-plugin-markdown": "4.8.1",
"typescript": "5.9.2",
"vitest": "3.2.4",
"webpack": "5.101.3"
},
"engines": {
"node": ">=20"
}
}