-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "@ilteoood/re-flusso",
"version": "0.2.1",
"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",
"format:fix": "pnpm run format --write",
"sort": "biome check --apply-unsafe ./src ./test ./examples",
"lint": "biome lint ./src ./test ./examples",
"lint:fix": "biome check --apply ./src ./test ./examples",
"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"
},
"keywords": [
"streams",
"utils",
"browser",
"nodejs",
"edge",
"dependency free",
"whatwg"
],
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@edge-runtime/vm": "^3.2.0",
"fast-json-stringify": "^5.15.0",
"glob": "^10.3.12",
"happy-dom": "^14.7.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}