
* Fix redirect behaviour * Generate headers file * Specific redirect * Another try * And again * Use dedent
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"private": true,
|
|
"name": "squoosh",
|
|
"version": "2.0.0",
|
|
"license": "apache-2.0",
|
|
"scripts": {
|
|
"build": "rollup -c && node lib/move-output.js",
|
|
"debug": "node --inspect-brk node_modules/.bin/rollup -c",
|
|
"dev": "run-p watch serve",
|
|
"watch": "rollup -cw",
|
|
"serve": "serve --config ../../../serve.json .tmp/build/static"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
"@rollup/plugin-replace": "^2.3.4",
|
|
"@surma/rollup-plugin-off-main-thread": "^1.4.2",
|
|
"@types/dedent": "^0.7.0",
|
|
"@types/node": "^14.14.7",
|
|
"comlink": "^4.3.0",
|
|
"cssnano": "^4.1.10",
|
|
"dedent": "^0.7.0",
|
|
"del": "^5.1.0",
|
|
"file-drop-element": "^1.0.1",
|
|
"husky": "^4.3.0",
|
|
"idb-keyval": "^3.2.0",
|
|
"linkstate": "^2.0.0",
|
|
"lint-staged": "^10.5.1",
|
|
"lodash.camelcase": "^4.3.0",
|
|
"mime-types": "^2.1.27",
|
|
"npm-run-all": "^4.1.5",
|
|
"pointer-tracker": "^2.4.0",
|
|
"postcss": "^7.0.35",
|
|
"postcss-modules": "^3.2.2",
|
|
"postcss-nested": "^4.2.3",
|
|
"postcss-simple-vars": "^5.0.2",
|
|
"postcss-url": "^8.0.0",
|
|
"preact": "^10.5.5",
|
|
"preact-render-to-string": "^5.1.11",
|
|
"prettier": "^2.1.2",
|
|
"pretty-bytes": "^5.4.1",
|
|
"rollup": "^2.33.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"serve": "^11.3.2",
|
|
"typescript": "^4.0.5",
|
|
"which": "^2.0.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,css,json,md,ts,tsx}": "prettier --write",
|
|
"*.{c,h,cpp,hpp}": "clang-format -i",
|
|
"*.rs": "rustfmt"
|
|
},
|
|
"dependencies": {
|
|
"wasm-feature-detect": "^1.2.9"
|
|
}
|
|
}
|