Files
imobiledevice.js/package.json
2026-03-03 10:12:22 +08:00

47 lines
1.3 KiB
JSON

{
"name": "webmuxd",
"version": "0.8.1",
"description": "WebUSB implementation of Apple Mobile Device usbmuxd",
"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",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm 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",
"@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": "^4.5.4"
},
"dependencies": {
"@types/w3c-web-usb": "^1.0.4"
}
}