-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 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
{
"name": "htmx-debugger",
"version": "1.2.1",
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"description": "htmx-debugger - a debugging tool for htmx applications",
"author": "Phillip Beazley <phillip@beazley.org>",
"license": "MIT",
"main": "devtools.html",
"keywords": [
"htmx",
"debugging",
"chrome-extension"
],
"scripts": {
"css": "tailwindcss -i ./tailwind.css -o ./output.css --minify",
"format": "prettier --write .",
"lint": "eslint .",
"build": "pwsh -NoLogo -NoProfile -ExecutionPolicy Bypass \"./.build.ps1\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/cli": "^4.3.3",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3"
},
"peerDependencies": {
"htmx.org": "^2.0.10 || >=4.0.0-beta6 <5"
},
"repository": {
"type": "git",
"url": "https://github.com/NomadicDaddy/htmx-debugger.git"
},
"bugs": {
"url": "https://github.com/NomadicDaddy/htmx-debugger/issues"
},
"homepage": "https://github.com/NomadicDaddy/htmx-debugger#readme"
}