-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "inquirer-file-tree-selection-prompt",
"version": "2.0.5",
"repository": "https://github.com/anc95/inquirer-file-tree-selection",
"description": "inquerer file tree selection prompt",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=14.16"
},
"scripts": {
"changelog": "auto-changelog",
"postpublish": "npm run changelog && git push origin --all; git push origin --tags",
"prepublishOnly": "tsc",
"build": "tsc"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"inquirer",
"filetree"
],
"author": "anc95",
"license": "ISC",
"dependencies": {
"chalk": "^5.0.1",
"cli-cursor": "^4.0.0",
"figures": "^4.0.1",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@types/node": "^18.6.3",
"@types/inquirer": "^9.0.0",
"auto-changelog": "^2.2.1",
"inquirer": "^9.1.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"inquirer": "^9.0.0"
}
}