├── .eslintrc.js ├── .gitignore ├── README.md ├── package.json ├── src ├── album-art.scpt ├── album-art.ts ├── art-asset.ts ├── index.ts ├── now-playing.scpt ├── now-playing.ts ├── rpc.ts └── types │ └── resize-image-buffer.d.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/package.json -------------------------------------------------------------------------------- /src/album-art.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/album-art.scpt -------------------------------------------------------------------------------- /src/album-art.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/album-art.ts -------------------------------------------------------------------------------- /src/art-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/art-asset.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/now-playing.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/now-playing.scpt -------------------------------------------------------------------------------- /src/now-playing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/now-playing.ts -------------------------------------------------------------------------------- /src/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/src/rpc.ts -------------------------------------------------------------------------------- /src/types/resize-image-buffer.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'resize-image-buffer' 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex2f/amrpc/HEAD/tsconfig.json --------------------------------------------------------------------------------