-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.52 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
{
"name": "@reliverse/prompts",
"version": "0.9.23",
"description": "A modern, type-safe, crash-resistant library for creating seamless, typesafe prompts in CLI applications. Designed for simplicity and elegance, it enables intuitive and robust user interactions.",
"scripts": {
"appts": "bun typecheck && bun lint && bun format",
"build": "unbuild && bun build.optim.ts && bun optimize",
"bunp": "bun publish",
"pub": "redrun build bunp",
"lint": "eslint --cache --fix .",
"format": "biome check --write .",
"optimize": "putout output --fix",
"check": "bun test",
"attw": "attw --pack",
"tsc": "tshy",
"knip": "knip",
"dev": "bun examples/examples-runner.ts"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reliverse/prompts.git"
},
"main": "./output/main.js",
"types": "./output/main.d.ts",
"module": "./output/main.js",
"exports": {
"import": "./output/main.js",
"types": "./output/main.d.ts"
},
"bugs": {
"url": "https://github.com/reliverse/prompts/issues",
"email": "blefnk@gmail.com"
},
"files": ["package.json", "README.md", "LICENSE.md", "output"],
"homepage": "https://github.com/reliverse/prompts",
"keywords": ["cli", "reliverse"],
"license": "MIT",
"dependencies": {
"@figliolia/chalk-animation": "^1.0.4",
"@sinclair/typebox": "^0.33.17",
"ansi-escapes": "^7.0.0",
"chalk": "^5.3.0",
"cli-spinners": "^3.2.0",
"cli-width": "^4.1.0",
"figlet": "^1.8.0",
"fs-extra": "^11.2.0",
"gradient-string": "^3.0.0",
"log-update": "^6.1.0",
"mute-stream": "^2.0.0",
"nypm": "^0.3.12",
"ora": "^8.1.1",
"pathe": "^1.1.2",
"picocolors": "^1.1.1",
"sisteransi": "^1.0.5",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.14.0",
"@types/bun": "^1.1.13",
"@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.9.0",
"@types/tape": "^5.6.4",
"eslint": "^9.14.0",
"eslint-plugin-perfectionist": "^3.9.1",
"knip": "^5.36.2",
"mock-stdin": "^1.0.0",
"putout": "^36.11.0",
"redrun": "^11.0.5",
"tape": "^5.9.0",
"tshy": "^3.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"unbuild": "^2.0.0",
"vitest": "^2.1.4"
}
}