-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "@topcli/prompts",
"version": "2.1.0",
"description": "Node.js user input library for command-line interfaces.",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build",
"test": "glob -c \"tsx --no-warnings=ExperimentalWarning --loader=esmock --test\" \"./test/**/*.test.ts\"",
"coverage": "c8 -r html npm run test",
"lint": "eslint src test",
"lint:fix": "eslint . --fix"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"keywords": [
"node.js",
"cli",
"prompt"
],
"files": [
"dist"
],
"author": "PierreDemailly <[email protected]>",
"license": "ISC",
"type": "module",
"devDependencies": {
"@openally/config.eslint": "^1.3.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.10.5",
"c8": "^10.1.3",
"esmock": "^2.6.9",
"glob": "^11.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@topcli/wcwidth": "^1.0.1"
},
"engines": {
"node": "^20.12.0 || >=21.7.0"
},
"bugs": {
"url": "https://github.com/TopCli/prompts/issues"
},
"homepage": "https://github.com/TopCli/prompts#readme"
}