generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "action-google-indexing",
"description": "GitHub Action to index your site on Google using the Indexing API.",
"version": "1.0.1",
"author": "",
"private": true,
"homepage": "https://github.com/robingenz/action-google-indexing#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/robingenz/action-google-indexing.git"
},
"bugs": {
"url": "https://github.com/robingenz/action-google-indexing/issues"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"exports": {
".": "./dist/index.mjs"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"format:write": "prettier --write **/*.mjs",
"format:check": "prettier --check **/*.mjs",
"package": "ncc build src/index.mjs --license licenses.txt",
"package:watch": "npm run package -- --watch",
"release": "commit-and-tag-version"
},
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.3",
"@actions/core": "^1.10.1",
"googleapis": "131.0.0",
"sitemapper": "3.2.8"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@vercel/ncc": "^0.38.1",
"commit-and-tag-version": "^12.4.0",
"prettier": "^3.2.4"
}
}