-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 998 Bytes
/
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
{
"name": "inquirer-fuzzy-select",
"version": "1.0.0",
"description": "Inquirer fuzzy select prompt",
"author": "Henning Pohlmeyer",
"license": "MIT",
"keywords": [],
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsup --dts --format=esm,cjs ./src/index.ts",
"test": "vitest run ./test/"
},
"dependencies": {
"@inquirer/core": "^5.1.1",
"ansi-escapes": "^6.2.0",
"chalk": "^5.3.0",
"figures": "^6.0.1"
},
"devDependencies": {
"@inquirer/testing": "^2.1.9",
"@tsconfig/node18": "^18.2.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"volta": {
"node": "18.18.2"
}
}