-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "fiber-htmx",
"description": "Components for building modern web applications with htmx",
"version": "0.0.0",
"keywords": [
"AJAX",
"HTML",
"HTMX"
],
"homepage": "https://github.com/zeiss/fiber-htmx",
"bugs": {
"url": "https://github.com/zeiss/fiber-htmx/issues"
},
"scripts": {
"build:esm": "esbuild --bundle --sourcemap --platform=neutral --packages=external --outfile=dist/fiber-htmx.esm.js src/main.ts",
"build:cjs": "esbuild --bundle --minify --sourcemap --outfile=dist/fiber-htmx.min.js src/main.ts",
"build:css": "tailwindcss -i ./src/input.css -o ./dist/out.css",
"types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build": "npm run build:esm && npm run build:cjs && npm run build:css",
"prepare": "npm run build"
},
"files": [
"LICENSE",
"README.md",
"dist/fiber-htmx.esm.d.ts",
"dist/*.css",
"dist/*.js",
"dist/*.js.gz"
],
"main": "dist/fiber-htmx.esm.js",
"unpkg": "dist/fiber-htmx.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ZEISS/fiber-htmx.git"
},
"license": "MIT",
"dependencies": {
"esbuild": "^0.23.1",
"lit": "^3.2.0",
"lit-element": "^4.1.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.13",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"typescript": "^4.9.5"
}
}