This repository was archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
{
"name": "quick-open-cli",
"version": "1.0.0-beta.1",
"description": "Extended `open` command with default dir set to current",
"author": "Jakub Biesiada",
"license": "MIT",
"scripts": {
"build": "pastel build",
"dev": "pastel dev",
"prettier": "prettier --write 'lib/**/*.{tsx,ts}'",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/awesome-cli/quick-open-cli.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"cli",
"open",
"file",
"quick",
"dir",
"program",
"exists"
],
"bugs": {
"url": "https://github.com/awesome-cli/quick-open-cli/issues"
},
"homepage": "https://github.com/awesome-cli/quick-open-cli#readme",
"bin": {
"quick-open-cli": "./build/cli.js",
"quick-open": "./build/cli.js",
"qoc": "./build/cli.js",
"qo": "./build/cli.js",
"o": "./build/cli.js"
},
"dependencies": {
"ink": "^3.0.9",
"pastel": "^1.1.1",
"react": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.21",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typescript": "^4.4.3"
},
"lint-staged": {
"lib/**/*.{tsx,ts}": [
"npm run prettier"
]
}
}