-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@reliverse/relinka",
"version": "1.2.3",
"author": "blefnk",
"type": "module",
"description": "@reliverse/relinka is a powerful logger for your terminal.",
"scripts": {
"dev": "bun examples/main.ts",
"check": "redrun typecheck lint format attw",
"release": "bumpp && bun check && bun pub",
"build:jsr": "bun build.optim.ts --jsr",
"build:npm": "unbuild && bun build.optim.ts",
"build": "redrun build:jsr build:npm optimize",
"pub:jsr": "bun build.publish.ts --jsr",
"pub:npm": "bun build.publish.ts",
"pub:dry": "bun build.publish.ts --dry-run",
"pub": "redrun pub:npm pub:jsr",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache --fix .",
"lint:i": "eslint --inspect-config",
"format": "biome check --write .",
"optimize": "putout dist-npm --fix",
"attw": "bunx @arethetypeswrong/cli",
"unpub": "npm unpublish",
"test": "vitest",
"knip": "knip"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reliverse/relinka.git"
},
"types": "./dist-npm/main.d.ts",
"module": "./dist-npm/main.js",
"main": "./dist-npm/main.js",
"exports": {
"import": "./dist-npm/main.js",
"types": "./dist-npm/main.d.ts"
},
"bugs": {
"url": "https://github.com/reliverse/relinka/issues",
"email": "blefnk@gmail.com"
},
"files": ["package.json", "README.md", "LICENSE.md", "dist-npm"],
"homepage": "https://github.com/reliverse/relinka",
"keywords": ["cli", "reliverse"],
"license": "MIT",
"dependencies": {
"@figliolia/chalk-animation": "^1.0.4",
"@sinclair/typebox": "^0.34.9",
"ansi-diff-stream": "^1.2.1",
"ansi-escapes": "^7.0.0",
"chalk": "^5.3.0",
"cli-spinners": "^3.2.0",
"cli-styles": "^1.0.0",
"cli-width": "^4.1.0",
"defu": "^6.1.4",
"detect-package-manager": "^3.0.2",
"external-editor": "^3.1.0",
"fast-glob": "^3.3.2",
"figlet": "^1.8.0",
"fs-extra": "^11.2.0",
"get-pixels": "^3.3.3",
"gradient-string": "^3.0.0",
"is-unicode-supported": "^2.1.0",
"kleur": "^4.1.5",
"log-update": "^6.1.0",
"mute-stream": "^2.0.0",
"node-emoji": "^2.1.3",
"nypm": "^0.4.0",
"ora": "^8.1.1",
"pathe": "^1.1.2",
"picocolors": "^1.1.1",
"precision": "^1.0.1",
"seventh": "^0.9.2",
"signal-exit": "^4.1.0",
"sisteransi": "^1.0.5",
"std-env": "^3.8.0",
"string-width": "^7.2.0",
"strip-ansi": "^7.1.0",
"ts-regex-builder": "^1.8.2",
"window-size": "^1.1.1",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "1.9.4",
"@cspell/dict-npm": "^5.1.14",
"@eslint/js": "^9.15.0",
"@types/ansi-diff-stream": "^1.2.3",
"@types/bun": "^1.1.14",
"@types/chalk-animation": "^1.6.3",
"@types/eslint__js": "^8.42.3",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/mute-stream": "^0.0.4",
"@types/node": "^22.10.0",
"@types/sentencer": "^0.2.3",
"@types/signal-exit": "^3.0.4",
"@types/strip-comments": "^2.0.4",
"@types/window-size": "^1.1.4",
"bumpp": "^9.8.1",
"c12": "^2.0.1",
"eslint": "^9.15.0",
"eslint-plugin-perfectionist": "^4.1.2",
"execa": "^9.5.1",
"jiti": "^2.4.0",
"knip": "^5.38.1",
"mock-stdin": "^1.0.0",
"printj": "^1.3.1",
"putout": "^36.14.0",
"redrun": "^11.0.5",
"sentencer": "^0.2.1",
"strip-comments": "^2.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"unbuild": "^2.0.0",
"vitest": "^2.1.6"
}
}