Replace CDN React/ReactDOM/Babel with local libs; remove Babel and inline scripts Build Tailwind locally, add safelist; switch to assets/tailwind.css Self-host Font Awesome and Inter (CSS + woff2); remove external font CDNs Implement strict CSP (no unsafe-inline/eval; scripts/styles/fonts from self) Extract inline handlers; move PWA scripts to external files Add local QR code generation (qrcode lib) and remove api.qrserver.com Improve SessionTypeSelector visual selection (highlighted background and ring) Keep PWA working with service worker and offline assets Refs: CSP hardening, offline-first, no external dependencies
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"author": "Troy Goode <troygoode@gmail.com> (http://github.com/troygoode/)",
|
|
"name": "require-directory",
|
|
"version": "2.1.1",
|
|
"description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.",
|
|
"keywords": [
|
|
"require",
|
|
"directory",
|
|
"library",
|
|
"recursive"
|
|
],
|
|
"homepage": "https://github.com/troygoode/node-require-directory/",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/troygoode/node-require-directory.git"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Troy Goode",
|
|
"email": "troygoode@gmail.com",
|
|
"web": "http://github.com/troygoode/"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "http://github.com/troygoode/node-require-directory/issues/"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"jshint": "^2.6.0",
|
|
"mocha": "^2.1.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"lint": "jshint index.js test/test.js"
|
|
}
|
|
}
|