google-indexing-script/package.json
2024-03-04 16:07:12 +01:00

39 lines
709 B
JSON

{
"name": "google-indexing-script",
"private": true,
"version": "0.0.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"
],
"scripts": {
"index": "ts-node ./src/cli.ts",
"build": "tsup",
"dev": "tsup --watch"
},
"dependencies": {
"googleapis": "131.0.0",
"sitemapper": "3.2.8"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}