-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 956 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 956 Bytes
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
{
"name": "audit-tool",
"version": "1.0.0",
"description": "Automated SEO audit tool",
"main": "robots.ts",
"bin": {
"seo-audit": "./start.ts"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"audit": "tsx start.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write '**/*.{ts,json,md}'",
"format:check": "prettier --check '**/*.{ts,json,md}'",
"test": "tsx --test 'tests/**/*.test.ts'"
},
"author": "Sergey Labut",
"license": "ISC",
"dependencies": {
"node-html-parser": "^6.1.13",
"playwright": "^1.49.1",
"web-vitals": "^4.2.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.15",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
}
}