-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 3.17 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@sec-ant/readable-stream",
"description": "A tiny, zero-dependency yet spec-compliant asynchronous iterator polyfill/ponyfill for ReadableStreams.",
"private": false,
"version": "0.6.0",
"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.name=chromium",
"test:firefox": "vitest run --browser.name=firefox",
"test": "pnpm -s test:chromium && pnpm -s test:firefox",
"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": "1.9.4",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@vitest/browser": "^2.1.2",
"@vitest/coverage-istanbul": "^2.1.2",
"@vitest/ui": "^2.1.2",
"concurrently": "^9.0.1",
"copy-files-from-to": "^3.11.0",
"lint-staged": "^15.2.10",
"playwright": "^1.47.2",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}