-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "inquirer-file-selector",
"author": "Brian Fernandez",
"description": "Inquerer file selector prompt.",
"version": "0.6.0",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"lint": "biome lint",
"lint:fix": "biome check --write",
"prebuild": "npm run lint",
"build": "tsup --config ./tsup.config.json"
},
"dependencies": {
"@inquirer/core": "^10.0.1",
"@inquirer/figures": "^1.0.7",
"chalk": "^5.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@inquirer/select": "4.0.1",
"@inquirer/type": "3.0.0",
"@tsconfig/node18": "18.2.4",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/br14n-sol/inquirer-file-selector.git"
},
"bugs": {
"url": "https://github.com/br14n-sol/inquirer-file-selector/issues"
},
"homepage": "https://github.com/br14n-sol/inquirer-file-selector#readme",
"keywords": [
"inquirer",
"file",
"selector"
]
}