-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "inquirer-file-selector",
"author": "Brian Fernandez",
"description": "Inquerer file selector prompt.",
"version": "0.6.1",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["./dist"],
"scripts": {
"prepare": "husky",
"lint": "biome lint",
"lint:fix": "biome check --write",
"clean": "rimraf dist",
"prebuild": "npm run clean && npm run lint",
"build": "rollup -c --configPlugin @rollup/plugin-typescript"
},
"lint-staged": {
"*.{ts,json}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"@inquirer/core": "^10.1.0",
"@inquirer/figures": "^1.0.8",
"chalk": "^5.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@inquirer/select": "4.0.2",
"@inquirer/type": "3.0.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"rimraf": "5.0.10",
"rollup": "4.28.1",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-node-externals": "8.0.0",
"rollup-plugin-tsconfig-paths": "1.5.2",
"tslib": "2.8.1",
"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"]
}