-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1015 Bytes
/
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
{
"name": "tls-monitor",
"version": "1.0.0",
"description": "Monitor SSL/TLS certificates for your domains.",
"main": "build/main.js",
"repository": "[email protected]:zrosenbauer/tls-monitor.git",
"author": "@zrosenbauer",
"license": "MIT",
"scripts": {
"build": "tsc",
"package": "ncc build dist/main.js --source-map --license licenses.txt --out build",
"biome": "biome",
"analyze": "biome check",
"analyze:ci": "biome ci",
"analyze:types": "tsc --noEmit",
"fix": "biome check --write ",
"test": "vitest --passWithNoTests"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@slack/webhook": "^7.0.3",
"gaxios": "^6.7.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/recommended": "^1.0.8",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@vercel/ncc": "0.38.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]"
}