diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-04 18:45:57 +0900 |
---|---|---|
committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-04 18:45:57 +0900 |
commit | ef79eab44bfd000792c610b968b5ceefd41e76a0 (patch) | |
tree | 48b04f30f6248caedbd880801aa49402a9e8066a /package.json | |
parent | 376151096431d4362e4baaacf0cef4a534e169f7 (diff) |
Modernize codebase
- Use ES modules
- Remove vendored libs and build them from npm using esbuild
- Switch from JSZip to zip.js
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package.json b/package.json index ee95d388..5224a963 100644 --- a/package.json +++ b/package.json @@ -37,19 +37,26 @@ "devDependencies": { "@playwright/test": "^1.39.0", "@types/node": "^20.8.10", + "@zip.js/zip.js": "^2.7.30", "ajv": "^8.12.0", "browserify": "^17.0.0", "css": "^3.0.0", + "dexie": "^3.2.4", + "dexie-export-import": "^4.0.7", + "esbuild": "^0.19.5", "eslint": "^8.52.0", "eslint-plugin-header": "^3.1.1", "eslint-plugin-jsdoc": "^46.8.2", "eslint-plugin-jsonc": "^2.10.0", "eslint-plugin-no-unsanitized": "^4.0.1", "fake-indexeddb": "^5.0.1", + "handlebars": "^4.7.8", "html-validate": "^8.7.0", "jsdom": "^22.1.0", + "jszip": "^3.10.1", "parse5": "^7.1.2", "stylelint": "^15.11.0", - "stylelint-config-recommended": "^13.0.0" + "stylelint-config-recommended": "^13.0.0", + "wanakana": "^5.2.0" } } |