mirror of
https://github.com/lbr77/SideImpactor.git
synced 2026-05-06 11:14:01 -04:00
- Keep TwoFactorModal open after code submit; display server-side errors inline instead of silently closing the modal - handlePair now returns PairedDeviceInfo so handleInstall uses the fresh UDID instead of stale closure state - Add explicit /wisp/ location in nginx.conf returning 502 to prevent SPA fallback from swallowing websocket upgrades - Add prefers-color-scheme dark mode via CSS custom property overrides; replace hardcoded rgba/hex with color-mix() for automatic adaptation
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "webmuxd",
|
|
"version": "0.8.1",
|
|
"description": "WebUSB implementation of Apple Mobile Device usbmuxd",
|
|
"packageManager": "bun@1.3.11",
|
|
"homepage": "https://github.com/webmuxd/webmuxd#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/webmuxd/webmuxd"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/webmuxd/webmuxd/issues"
|
|
},
|
|
"main": "lib/webmuxd.js",
|
|
"types": "lib/webmuxd.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/webmuxd.d.ts",
|
|
"default": "./lib/webmuxd.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"lib/**/*",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "bun run build:openssl-wasm && tsc && bun run copy:openssl-wasm",
|
|
"build:openssl-wasm": "cd ../../wasm/openssl && bun run build",
|
|
"copy:openssl-wasm": "bun scripts/copy-openssl-wasm.mjs",
|
|
"prepack": "bun run build",
|
|
"prepublishOnly": "bun run test && bun run lint",
|
|
"preversion": "bun run lint",
|
|
"version": "bun run format && git add -A src",
|
|
"postversion": "git push && git push --tags",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"lint": "eslint --ext .ts src/",
|
|
"test": "jest --config jestconfig.json"
|
|
},
|
|
"author": "Rick Mark",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.15",
|
|
"@types/node": "^25.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
"@typescript-eslint/parser": "^5.7.0",
|
|
"eslint": "^8.4.1",
|
|
"eslint-config-prettier": "^6.14.0",
|
|
"eslint-plugin-jsdoc": "^37.2.1",
|
|
"eslint-plugin-prefer-arrow": "^1.2.2",
|
|
"jest": "^26.6.0",
|
|
"prettier": "^2.1.2",
|
|
"ts-jest": "^26.4.1",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/w3c-web-usb": "^1.0.4"
|
|
}
|
|
}
|