-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 969 Bytes
/
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": "njt",
"version": "3.0.0",
"description": "npm jump to: a quick navigation tool for npm packages",
"keywords": [
"frog",
"jump",
"meta",
"njt",
"npm",
"npmjs",
"productivity",
"search",
"search-engine",
"shortcuts",
"vercel",
"vercel-deployment"
],
"homepage": "https://njt.vercel.app",
"bugs": "https://github.com/kachkaev/njt/issues",
"repository": {
"type": "git",
"url": "https://github.com/kachkaev/njt.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Alexander Kachkaev",
"email": "alexander@kachkaev.ru"
},
"type": "module",
"main": "main.js",
"bin": "cli.js",
"scripts": {
"prepack": "pnpm ncp ../README.md README.md"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"find-package-json": "^1.2.0",
"open": "^10.0.0"
},
"devDependencies": {
"ncp": "^2.0.0"
},
"engines": {
"node": ">=16"
}
}