generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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": "indexnow-action",
"version": "1.1.2",
"description": "Automatically submit URLs through the IndexNow protocol.",
"main": "index.js",
"engines": {
"node": ">=20.0"
},
"scripts": {
"lint": "eslint --config ./.eslintrc.js **/*.ts",
"lint:fix": "eslint --config ./.eslintrc.js **/*.ts --fix",
"format": "prettier --plugin=@prettier/plugin-xml --no-error-on-unmatched-pattern --config ./.prettierrc.js --write '**/*.{js,ts,yml,yaml,xml}'",
"format-check": "prettier --plugin=@prettier/plugin-xml --no-error-on-unmatched-pattern --config ./.prettierrc.js --check '**/*.{js,ts,yml,yaml,xml}'",
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"test": "jest",
"pre-checkin": "npm run format && npm run lint:fix && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bojieyang/indexnow-action.git"
},
"keywords": [
"GitHub",
"Actions",
"IndexNow"
],
"author": "Bojie Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/bojieyang/indexnow-action/issues"
},
"homepage": "https://github.com/bojieyang/indexnow-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"dayjs": "^1.11.13",
"fast-xml-parser": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@prettier/plugin-xml": "^3.4.1",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.13.0"
}
}