-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "google-rank",
"version": "0.3.0",
"description": "Retrieve the Google search ranking of your website for specific keywords ",
"keywords": [
"cli",
"google",
"tools",
"seo",
"seotools",
"google-search",
"search-ranking"
],
"homepage": "https://github.com/threeal/google-rank#readme",
"bugs": {
"url": "https://github.com/threeal/google-rank/issues",
"email": "[email protected]"
},
"repository": "github:threeal/google-rank.git",
"license": "MIT",
"author": "Alfi Maulana <[email protected]> (https://github.com/threeal)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin.js",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write --cache .",
"lint": "eslint",
"prepack": "tsc",
"test": "jest"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"google-sr": "^4.0.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.6",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"packageManager": "[email protected]"
}