-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "html-bundle",
"version": "6.1.8",
"description": "A very simple bundler for HTML SFC",
"bin": "./dist/bundle.mjs",
"types": "./src/config.d.ts",
"scripts": {
"start": "tsc",
"update": "npx npm-check-updates -u && npx typesync && npm i && npm outdated"
},
"keywords": [
"bundler",
"SFC",
"HTML",
"TypeScript",
"esbuild",
"hydro-js"
],
"author": "Fabian Klingenberg <[email protected]> (https://klingenberg.netlify.app/)",
"license": "MIT",
"devDependencies": {
"@types/cssnano": "^5.1.3",
"@types/glob": "^8.1.0",
"@types/html-minifier-terser": "^7.0.2",
"@types/parse5": "^7.0.0",
"@types/postcss-load-config": "^3.0.1",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krutsch/html-bundle.git"
},
"bugs": "https://github.com/Krutsch/html-bundle/issues",
"dependencies": {
"@fastify/static": "^8.0.2",
"@web/parse5-utils": "^2.1.0",
"await-spawn": "^4.0.2",
"beasties": "^0.2.0",
"chokidar": "^4.0.1",
"cssnano": "^7.0.6",
"esbuild": "^0.24.0",
"fastify": "^5.0.0",
"glob": "^11.0.0",
"html-minifier-terser": "^7.2.0",
"hydro-js": "^1.5.22",
"parse5": "^7.2.0",
"postcss": "^8.4.47",
"postcss-load-config": "^6.0.1"
}
}