├── .github └── workflows │ ├── cd.yaml │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── jest.config.cjs ├── package.json └── test ├── index.test.mjs ├── my.torrent └── ubuntu.torrent /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testMatch: ["**/*.test.mjs"], 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/package.json -------------------------------------------------------------------------------- /test/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/test/index.test.mjs -------------------------------------------------------------------------------- /test/my.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/test/my.torrent -------------------------------------------------------------------------------- /test/ubuntu.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tukideng/torrent2magnet-js/HEAD/test/ubuntu.torrent --------------------------------------------------------------------------------