-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 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
{
"name": "htmx-debugger",
"version": "1.0.6",
"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 -c ./tailwind.config.mjs -i ./tailwind.css -o ./output.css --minify",
"format": "prettier --write .",
"lint": "eslint .",
"build": "pwsh -NoLogo -NoProfile -ExecutionPolicy Bypass \"./.build.ps1\""
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14"
},
"peerDependencies": {
"htmx.org": "^2.0.3"
},
"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"
}