-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ink-spawn",
"version": "0.1.4",
"type": "module",
"description": "Component for Ink, spawning child processes",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint",
"example:sequential": "clear && tsx ./src/examples/sequential.tsx",
"example:parallel": "clear && tsx ./src/examples/parallel.tsx",
"example:silent": "clear && tsx ./src/examples/silent.tsx",
"example:failing": "clear && tsx ./src/examples/sequential.tsx",
"example:composed": "clear && tsx ./src/examples/composed.tsx",
"example:text": "clear && tsx ./src/examples/text.tsx"
},
"files": [
"dist",
"README.md",
"!examples"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kraenhansen/ink-spawn.git"
},
"keywords": [
"ink",
"spawn",
"stdio",
"stdout",
"stderr",
"buffer",
"output",
"spinner",
"spinners",
"prefix"
],
"author": "Kræn Hansen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kraenhansen/bufout/issues"
},
"homepage": "https://github.com/kraenhansen/bufout#readme",
"peerDependencies": {
"react": ">=18.0.0",
"ink": ">=4.0.0"
},
"dependencies": {
"bufout": "^0.3.1",
"ink-spinner": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/node18": "18.2.4",
"@types/mocha": "^10.0.10",
"@types/node": "^18",
"@types/react": "^18",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ink": "^5.1.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"react": "^18.3.1",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.15.0"
}
}