-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
53
54
55
56
57
58
{
"name": "command-stream",
"version": "0.8.0",
"description": "Modern $ shell utility library with streaming, async iteration, and EventEmitter support, optimized for Bun runtime",
"type": "module",
"main": "src/$.mjs",
"bin": {
"command-stream": "./bin/command-stream"
},
"exports": {
".": "./src/$.mjs",
"./zx": "./src/zx-compat.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/link-foundation/command-stream.git"
},
"homepage": "https://github.com/link-foundation/command-stream#readme",
"bugs": {
"url": "https://github.com/link-foundation/command-stream/issues"
},
"scripts": {
"test": "bun test tests/",
"test:coverage": "bun test tests/ --coverage",
"test:features": "bun test tests/*.features.test.mjs",
"test:comparison": "bun test tests/*.features.test.mjs --reporter=verbose",
"test:readme": "bun test tests/readme-examples.test.mjs",
"test:sync": "bun test tests/sync.test.mjs",
"test:builtin": "bun test tests/builtin-commands.test.mjs",
"test:pipe": "bun test tests/pipe.test.mjs"
},
"keywords": [
"shell",
"command",
"streaming",
"async",
"iteration",
"eventemitter",
"bun",
"node",
"cross-runtime",
"zx",
"zx-compatible",
"shell-scripts"
],
"author": "link-foundation",
"license": "Unlicense",
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
},
"files": [
"src/",
"bin/",
"README.md",
"LICENSE"
]
}