Files
SideImpactor/dependencies/webmuxd/package.json
Lakr aef3c71ed4 fix: show 2FA errors in modal, fix stale device check, add dark mode
- 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
2026-04-13 17:18:07 +08:00

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"
}
}