-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
41
42
43
44
45
46
47
48
{
"name": "responsive-image-linter",
"version": "1.3.0",
"description": "A Chrome extension to test your responsive images",
"homepage": "https://github.com/peter-neumann-dev/responsive-image-linter#readme",
"bugs": {
"url": "https://github.com/peter-neumann-dev/responsive-image-linter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-neumann-dev/responsive-image-linter.git"
},
"license": "MIT",
"author": "Peter Neumann",
"type": "module",
"scripts": {
"build": "vite build --mode development",
"build:prod": "vite build --mode production",
"dev": "vite build --watch --mode development",
"format": "prettier . --write",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint . --max-warnings 0",
"prepare": "husky",
"release": "npm run build:prod && tsx scripts/create-release.ts",
"test": "tsc --noEmit && npm run lint",
"update-collector": "tsx scripts/update-collector.ts"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5"
},
"engines": {
"node": ">=22"
}
}