-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.2 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.2 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
{
"name": "@sec-ant/readable-stream",
"description": "A tiny, zero-dependency yet spec-compliant asynchronous iterator polyfill/ponyfill for ReadableStreams.",
"private": false,
"version": "0.6.1",
"type": "module",
"files": [
"./dist"
],
"main": "./dist/index/index.js",
"module": "./dist/index/index.js",
"exports": {
".": "./dist/index/index.js",
"./asyncIterator": "./dist/index/asyncIterator.js",
"./fromAnyIterable": "./dist/index/fromAnyIterable.js",
"./ponyfill": "./dist/ponyfill/index.js",
"./ponyfill/asyncIterator": "./dist/ponyfill/asyncIterator.js",
"./ponyfill/fromAnyIterable": "./dist/ponyfill/fromAnyIterable.js",
"./polyfill": "./dist/polyfill/index.js",
"./polyfill/asyncIterator": "./dist/polyfill/asyncIterator.js",
"./polyfill/fromAnyIterable": "./dist/polyfill/fromAnyIterable.js",
"./async-iterator": {
"types": "./dist/types/async-iterator.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sec-ant/readable-stream.git"
},
"homepage": "https://github.com/Sec-ant/readable-stream",
"bugs": {
"url": "https://github.com/Sec-ant/readable-stream/issues",
"email": "zezhengwu@proton.me"
},
"keywords": [
"stream",
"web-streams",
"readablestream",
"async",
"asynchronous",
"iterator",
"iteration",
"async-iterator",
"polyfill",
"esm",
"from-iterable"
],
"author": {
"name": "Ze-Zheng Wu"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"update-hooks": "simple-git-hooks",
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"format:prettier": "prettier . --write",
"format:biome": "biome format . --write",
"format": "conc \"npm:format:prettier\" \"npm:format:biome\"",
"check:biome": "biome check --write .",
"check": "conc \"npm:format:prettier\" \"npm:check:biome\"",
"prebuild": "pnpm -s check && pnpm -s type-check",
"build": "vite build",
"copy": "copy-files-from-to",
"postbuild": "tsc && pnpm -s copy",
"test:chromium": "vitest run --browser=chromium",
"test:firefox": "vitest run --browser=firefox",
"test": "vitest run",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui --coverage",
"prepublishOnly": "pnpm -s build",
"bump-biome:latest": "pnpm add -DE @biomejs/biome@latest",
"bump-biome:nightly": "pnpm add -DE @biomejs/biome@nightly"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@vitest/browser": "^4.1.5",
"@vitest/browser-playwright": "4.1.5",
"@vitest/coverage-istanbul": "^4.1.5",
"@vitest/ui": "^4.1.5",
"concurrently": "^9.2.1",
"copy-files-from-to": "^4.0.0",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}