-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "css-noop-checker",
"version": "0.1.1",
"private": true,
"description": "Chrome DevTools extension that detects no-op CSS properties",
"keywords": [
"chrome-extension",
"css",
"devtools",
"linting",
"mcp",
"no-op"
],
"homepage": "https://github.com/purupurupu/css-noop-checker#readme",
"bugs": {
"url": "https://github.com/purupurupu/css-noop-checker/issues"
},
"license": "MIT",
"author": "purupurupu",
"repository": {
"type": "git",
"url": "https://github.com/purupurupu/css-noop-checker.git"
},
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "tsc -b && tsc -p mcp-server/tsconfig.json --noEmit && vite build && pnpm --filter css-noop-checker-mcp build",
"lint": "oxlint .",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.1.37",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"happy-dom": "^20.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,html,css,md}": "oxfmt --write",
"*.{js,jsx,ts,tsx}": "oxlint"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
}
}