-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@ilteoood/re-flusso",
"version": "0.3.0",
"description": "Utility library to operate with JavaScript Streams API",
"type": "module",
"author": "Matteo Pietro Dazzi",
"homepage": "https://github.com/ilteoood/re-flusso",
"license": "MIT",
"exports": {
"./*": {
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ilteoood/re-flusso"
},
"scripts": {
"format": "biome format ./src ./test ./examples ./benchmarks",
"format:fix": "pnpm run format --write",
"sort": "biome check --apply-unsafe ./src ./test ./examples ./benchmarks",
"lint": "biome lint ./src ./test ./examples ./benchmarks",
"lint:fix": "biome check --write ./src ./test ./examples ./benchmarks",
"test": "pnpm run \"/^test:.*/\"",
"test:node": "vitest --config ./vitest-node.config.ts",
"test:browser": "vitest --config ./vitest-browser.config.ts",
"test:edge": "vitest --config ./vitest-edge.config.ts",
"build": "tsup",
"prepublish": "pnpm run build",
"benchmark": "vitest bench --config ./vitest-benchmark.config.ts"
},
"keywords": [
"streams",
"utils",
"browser",
"nodejs",
"edge",
"dependency free",
"whatwg"
],
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@edge-runtime/vm": "^3.2.0",
"@types/node": "^20.14.7",
"fast-json-stringify": "^5.16.1",
"glob": "^10.4.2",
"happy-dom": "^14.12.3",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
}
}