-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 879 Bytes
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
{
"name": "pipeline-transform",
"version": "0.0.2",
"description": "A familiar set of array-like operators for creating pipelines with async generators",
"license": "MIT",
"author": "Scott Kaye",
"type": "module",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/ScottKaye/pipeline-transform"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "bunup src/index.ts --format esm,cjs --dts",
"test": "bun test && tstyche",
"check": "biome check",
"bench": "bun run benchmark",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@types/bun": "^1.2.17",
"@types/node": "^24.0.4",
"bunup": "^0.8.48",
"mitata": "^1.0.34",
"tstyche": "^4.1.0",
"typescript": "^5.8.3"
}
}