-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.77 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
68
69
70
71
{
"name": "html-bundle",
"version": "6.6.1",
"description": "A very simple bundler for HTML SFC",
"bin": "./dist/bundle.mjs",
"main": "./dist/bundle.mjs",
"module": "./dist/bundle.mjs",
"exports": {
"import": "./dist/bundle.mjs",
"default": "./dist/bundle.mjs"
},
"types": "./dist/bundle.d.mts",
"scripts": {
"start": "tsc && node -e \"require('fs').chmodSync('dist/bundle.mjs', 0o755)\"",
"test": "npm run start && node --test tests/*.test.mjs"
},
"keywords": [
"bundler",
"SFC",
"HTML",
"TypeScript",
"esbuild",
"hydro-js"
],
"author": "Fabian Klingenberg <klingenberg.fabian@gmx.de> (https://klingenberg.works/)",
"license": "MIT",
"devDependencies": {
"@types/cssnano": "^5.1.3",
"@types/express": "~5.0.6",
"@types/glob": "^9.0.0",
"@types/html-minifier-terser": "^7.0.2",
"@types/parse5": "^7.0.0",
"@types/postcss-load-config": "^3.0.1",
"happy-dom": "^20.11.2",
"hydro-js": "^1.9.5",
"typescript": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krutsch/html-bundle.git"
},
"bugs": "https://github.com/Krutsch/html-bundle/issues",
"dependencies": {
"@web/parse5-utils": "^3.0.0",
"await-spawn": "^4.0.2",
"beasties": "^0.4.3",
"chokidar": "^5.0.0",
"cssnano": "^8.0.5",
"esbuild": "^0.28.2",
"express": "^5.2.1",
"glob": "^13.0.6",
"html-minifier-terser": "^7.2.0",
"httpolyglot": "^0.1.2",
"jiti": "^2.7.0",
"p-limit": "^7.3.1",
"parse5": "^8.0.1",
"postcss": "^8.5.26",
"postcss-load-config": "^6.0.1"
},
"allowScripts": {
"esbuild@0.28.2": true
},
"peerDependencies": {
"hydro-js": "^1.9.5"
},
"peerDependenciesMeta": {
"hydro-js": {
"optional": true
}
}
}