refactor directory

This commit is contained in:
LiBr
2026-04-10 08:53:51 +08:00
parent 41d3f700b9
commit 8d31144741
215 changed files with 938 additions and 1836 deletions

58
dependencies/webmuxd/package.json vendored Normal file
View File

@@ -0,0 +1,58 @@
{
"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": "tsc && bun run copy:openssl-wasm",
"copy:openssl-wasm": "bun scripts/copy-openssl-wasm.mjs",
"prepare": "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"
}
}