-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "@venusprotocol/globalping-action",
"version": "1.0.0",
"description": "A GitHub Action to ping a website from multiple locations using Globalping",
"author": "https://github.com/VenusProtocol",
"license": "MIT",
"main": "dist/index.ts",
"engines": {
"node": ">=20.x.x"
},
"scripts": {
"build": "tsc && ncc build ./src/main.ts -o dist",
"prettier:write": "prettier --write '**/*.ts'",
"prettier:check": "prettier --check '**/*.ts'",
"lint:check": "eslint . --ext .ts",
"lint:write": "eslint --fix . --ext .ts",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.1",
"axios": "^1.7.9"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}