Files
espurna/code/package.json
Maxim Prokhorov 289fea4f3d webui: separate sources per module
* migrate to esbuild from terser, since now js source needs bundling
* (temporary?) hijack inline-source object handling to inline html files
* get rid of legacy removeIf comments in source in favour of explicit
  removal either through bundling tree-shaking and / or manual module-*
  class element removal w/ jsdom
* get rid of multi-layered custom checkboxes in favour of
  `appearance: none` directly styling the `input` elem
  also removes scripting part that was supposed to adjust for=... labels
* update to html-minifier-terser, up-to-date html-minifier fork
* update to iro.js 5.5.x, using npm to manage dependencies
* build script can now update resulting html output
  (called after bundling stage, before minification)
2024-06-22 19:49:59 +03:00

27 lines
715 B
JSON

{
"name": "esp8266-filesystem-builder",
"description": "Gulp based build system for ESP8266 file system files",
"main": "gulpfile.js",
"author": "Xose Pérez <xose.perez@gmail.com>",
"contributors": [
"Maxim Prokhorov <prokhorov.max@outlook.com>"
],
"license": "GPL-3.0",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@jaames/iro": "^5.5.2",
"@types/node": "^20.14.2",
"esbuild": "^0.21.4",
"eslint": "^9.3.0",
"globals": "^15.4.0",
"gulp": "^5.0.0",
"gulp-gzip": "^1.4.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"html-minifier-terser": "^7.2.0",
"html-validate": "^8.19.1",
"inline-source": "^8.0.3",
"jsdom": "^24.1.0"
}
}