-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 KB
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
55
{
"name": "telcheck",
"version": "2.0.0",
"description": "Check caller and notify to discord for NVR510",
"homepage": "https://github.com/tomacheese/telcheck",
"bugs": {
"url": "https://github.com/tomacheese/telcheck/issues"
},
"license": "MIT",
"author": "Tomachi",
"private": true,
"main": "dist/main.js",
"repository": {
"url": "git@github.com:tomacheese/telcheck.git",
"type": "git"
},
"scripts": {
"generate-schema": "typescript-json-schema --required tsconfig.json Configuration -o schema/Configuration.json",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"preinstall": "npx only-allow pnpm",
"start": "tsx ./src/main.ts",
"dev": "tsx watch ./src/main.ts",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"fix": "run-z fix:prettier,fix:eslint"
},
"devDependencies": {
"@book000/eslint-config": "1.14.19",
"@book000/node-utils": "1.24.123",
"@fastify/basic-auth": "6.2.0",
"@fastify/cors": "11.2.0",
"@types/cheerio": "1.0.0",
"@types/node": "24.12.2",
"@types/web-push": "3.6.4",
"cheerio": "1.2.0",
"eslint": "10.2.1",
"eslint-config-standard": "17.1.0",
"fastify": "5.8.5",
"prettier": "3.8.3",
"run-z": "2.1.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-json-schema": "0.67.1",
"web-push": "3.6.7"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}