Build with Gulp

This commit is contained in:
Mathias Malmqvist
2025-09-16 23:27:00 +02:00
committed by dualshock-tools
parent 3493c4de74
commit 7d4ddfdfad
11 changed files with 6627 additions and 23 deletions

56
package.json Normal file
View File

@@ -0,0 +1,56 @@
{
"name": "dualshock-calibration-gui",
"version": "1.0.0",
"description": "A web-based calibration tool for PlayStation DualShock 4, DualSense, and DualSense Edge controllers",
"main": "index.html",
"type": "module",
"scripts": {
"build": "gulp build",
"build:prod": "gulp build --production",
"clean": "gulp clean",
"dev": "gulp dev",
"watch": "gulp watch",
"serve": "node dev-server.js",
"serve:https": "HTTPS=true node dev-server.js",
"start": "npm run build && npm run serve",
"dev:serve": "npm run build && concurrently \"npm run dev\" \"npm run serve\"",
"dev:full": "npm run build && concurrently --kill-others \"npm run watch\" \"npm run serve\""
},
"devDependencies": {
"rollup": "^4.9.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"gulp": "^5.0.1",
"gulp-cli": "^3.1.0",
"gulp-terser": "^2.1.0",
"gulp-clean-css": "^4.3.0",
"gulp-htmlmin": "^5.0.1",
"gulp-rev": "^11.0.0",
"gulp-rev-replace": "^0.4.4",
"gulp-concat": "^2.6.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.1.0",
"rollup-stream": "^1.24.1",
"vinyl-source-stream": "^2.0.0",
"vinyl-buffer": "^1.0.1",
"del": "^8.0.0",
"yargs": "^18.0.0",
"gulp-svgmin": "^4.1.0",
"gulp-replace": "^1.1.4",
"gulp-json-minify": "^1.2.3",
"glob": "^10.3.10",
"html-minifier-terser": "^7.2.0",
"concurrently": "^8.2.2",
"http-server": "^14.1.1"
},
"keywords": [
"dualshock",
"dualsense",
"controller",
"calibration",
"webHID"
],
"author": "",
"license": "MIT"
}