-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.32 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.32 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
67
{
"name": "clay-slip",
"version": "2.3.0",
"description": "Modern devtools for Clay CMS pages: visualize component boundaries, inspect data, and navigate the page/layout hierarchy.",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://github.com/clay/clay-devtools",
"repository": {
"type": "git",
"url": "git+https://github.com/clay/clay-devtools.git"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:firefox": "tsc --noEmit && TARGET=firefox vite build && node scripts/firefox-postbuild.mjs",
"preview": "vite preview",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run lint && npm run format:check && npm run test",
"zip": "node scripts/zip-extension.mjs",
"zip:firefox": "TARGET=firefox node scripts/zip-extension.mjs",
"release:dry": "npm run validate && npm run build && npm run zip",
"release:dry:firefox": "npm run validate && npm run build:firefox && npm run zip:firefox",
"release:dry:both": "npm run validate && npm run build && npm run zip && npm run build:firefox && npm run zip:firefox"
},
"dependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6",
"webextension-polyfill": "^0.12.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.4.0",
"@eslint/js": "^9.39.4",
"@types/chrome": "^0.1.42",
"@types/node": "^24.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/webextension-polyfill": "^0.12.5",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.12",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=24"
},
"overrides": {
"rollup": "^2.80.0"
}
}