-
Notifications
You must be signed in to change notification settings - Fork 482
/
package.json
46 lines (46 loc) · 1.01 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": "google-indexing-script",
"description": "Script to get your site indexed on Google in less than 48 hours",
"version": "0.4.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"google-indexing-script": "./dist/bin.js",
"gis": "./dist/bin.js"
},
"keywords": [
"google",
"indexing",
"search-console",
"sitemap",
"seo",
"google-search",
"cli",
"typescript"
],
"license": "MIT",
"scripts": {
"index": "ts-node ./src/cli.ts",
"build": "tsup",
"dev": "tsup --watch",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"commander": "^12.1.0",
"googleapis": "131.0.0",
"picocolors": "^1.0.1",
"sitemapper": "3.2.8"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}