forked from incetarik/fp-ts-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "fp-ts-stream",
"version": "0.1.21",
"description": "A library providing async and sync streams for fp-ts.",
"files": [
"dist/**"
],
"exports": {
"Stream": {
"import": "./dist/Stream.mjs",
"types": "./dist/Stream.d.ts",
"require": "./dist/Stream.js"
},
"AsyncStream": {
"import": "./dist/AsyncStream.mjs",
"types": "./dist/AsyncStream.d.ts",
"require": "./dist/AsyncStream.js"
}
},
"sideEffects": false,
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "rslib build",
"dev": "rslib build --watch",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"prepare": "npx rslib build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamliang0/fp-ts-stream.git"
},
"author": "Adam Liang <hello@adamliang.dev>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/adamliang0/fp-ts-stream/issues"
},
"homepage": "https://github.com/adamliang0/fp-ts-stream#readme",
"peerDependencies": {},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@microsoft/api-extractor": "^7.55.0",
"@rsbuild/plugin-node-polyfill": "^1.4.2",
"@rslib/core": "^0.18.0",
"@typescript/native-preview": "^7.0.0-dev.20251119.1",
"@vitest/coverage-v8": "4.0.10",
"typescript": "5.9.3",
"vitest": "^4.0.10"
},
"packageManager": "bun@1.3.2"
}