-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 KB
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
58
59
60
61
62
63
64
65
66
{
"name": "read-file-input",
"description": "Opens a 📝 text editor, waits until closed & captures 🔬 file content.",
"version": "1.1.6",
"license": "MIT",
"main": "dist/read-file-input.js",
"types": "dist/read-file-input.d.ts",
"type": "module",
"homepage": "https://github.com/vsnthdev/read-file-input#readme",
"bugs": "https://github.com/vsnthdev/read-file-input/issues",
"author": {
"name": "Vasanth Developer",
"url": "https://vsnth.dev",
"email": "hey@vsnth.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/vsnthdev/read-file-input.git"
},
"engines": {
"node": ">=17"
},
"scripts": {
"dev": "tsc --watch",
"build": "rimraf ./dist && tsc --incremental false",
"clean": "rimraf ./dist",
"docs": "node scripts/docs.js"
},
"keywords": [
"cli",
"input",
"stdin",
"editor",
"prompt",
"prompt",
"prompts",
"prompts",
"command",
"terminal",
"readline",
"command-line"
],
"dependencies": {
"deepmerge": "^4.3.1",
"execa": "^8.0.1",
"nanoid": "^5.0.6",
"os-paths": "^7.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"es-dirname": "^0.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}