-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "zy-stats",
"version": "3.0.0",
"description": "Fetch Zyxel's stats from the CLI.",
"main": "app.ts",
"type": "module",
"bin": {
"zy-stats": "src/app.ts"
},
"scripts": {
"start": "node --env-file=.env src/app.ts",
"type:check": "tsc --noEmit",
"lint:check": "oxlint src/",
"lint:fix": "oxlint --fix src/",
"fmt:check": "oxfmt --check",
"fmt:write": "oxfmt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ailequal/zy-stats.git"
},
"keywords": [
"nodejs",
"cli",
"zyxel",
"stats"
],
"author": "ailequal",
"license": "MIT",
"bugs": {
"url": "https://github.com/ailequal/zy-stats/issues"
},
"homepage": "https://github.com/ailequal/zy-stats#readme",
"engines": {
"npm": ">=11.0.0 <12.0.0",
"node": ">=24.0.0 <25.0.0"
},
"dependencies": {
"puppeteer-core": "^24.42.0",
"undici": "^8.1.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"typescript": "^6.0.3"
}
}