123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "name": "@yume-chan/scrcpy",
- "version": "0.0.17",
- "description": "TypeScript implementation of Scrcpy.",
- "keywords": [
- "adb",
- "android-phone",
- "scrcpy"
- ],
- "license": "MIT",
- "author": {
- "name": "Simon Chan",
- "email": "cnsimonchan@live.com",
- "url": "https://chensi.moe/blog"
- },
- "homepage": "https://github.com/yume-chan/ya-webadb/tree/main/packages/scrcpy#readme",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/yume-chan/ya-webadb.git",
- "directory": "packages/scrcpy"
- },
- "bugs": {
- "url": "https://github.com/yume-chan/ya-webadb/issues"
- },
- "bin": {
- "fetch-scrcpy-server": "scripts/fetch-server.cjs"
- },
- "type": "module",
- "main": "esm/index.js",
- "types": "esm/index.d.ts",
- "scripts": {
- "build": "tsc -b tsconfig.build.json",
- "build:watch": "tsc -b tsconfig.build.json",
- "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
- "prepublishOnly": "npm run build"
- },
- "dependencies": {
- "@yume-chan/async": "^2.2.0",
- "@yume-chan/event": "workspace:^0.0.17",
- "@yume-chan/stream-extra": "workspace:^0.0.17",
- "@yume-chan/struct": "workspace:^0.0.17",
- "tslib": "^2.4.1"
- },
- "devDependencies": {
- "@jest/globals": "^29.3.1",
- "@yume-chan/adb": "workspace:^0.0.17",
- "@yume-chan/ts-package-builder": "workspace:^1.0.0",
- "cross-env": "^7.0.3",
- "gh-release-fetch": "^3.0.2",
- "jest": "^29.3.1",
- "ts-jest": "^29.0.3",
- "typescript": "^4.8.4"
- },
- "peerDependencies": {
- "@yume-chan/adb": "workspace:^0.0.17",
- "gh-release-fetch": "^3.0.2"
- },
- "peerDependenciesMeta": {
- "@yume-chan/adb": {
- "optional": true
- },
- "gh-release-fetch": {
- "optional": true
- }
- }
- }
|