-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
{
"name": "effective-progress",
"version": "0.11.1",
"description": "Effect-first terminal progress bars with nested multibar support",
"homepage": "https://github.com/stromseng/effective-progress#readme",
"bugs": {
"url": "https://github.com/stromseng/effective-progress/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stromseng/effective-progress.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "effect-language-service patch",
"build": "tsdown",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check": "bun run typecheck && bun run lint && bun run format:check && knip",
"perf": "bun --cpu-prof --cpu-prof-md examples/performance.ts"
},
"dependencies": {
"cli-spinners": "^3.4.0",
"fast-string-width": "^3.0.2",
"ink": "^7.0.1",
"react": "^19.2.4"
},
"devDependencies": {
"@effect/language-service": "^0.73.1",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"effect": "^3.19.17",
"knip": "^5.86.0",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"strip-ansi": "^7.2.0",
"tsdown": "^0.21.0-beta.2",
"typescript": "^5"
},
"peerDependencies": {
"effect": "^3.19.17"
},
"engines": {
"node": ">=20.12.0"
}
}