mirror of
https://github.com/leoherzog/TorrentParts.git
synced 2026-01-23 19:58:03 -08:00
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "torrentparts",
|
|
"version": "0.0.1",
|
|
"description": "📑 A website to inspect and edit Torrent files and Magnet URLs",
|
|
"main": "bundle.js",
|
|
"dependencies": {
|
|
"browserify": "latest",
|
|
"Buffer": "latest",
|
|
"bytes": "latest",
|
|
"clipboard": "latest",
|
|
"dropzone": "latest",
|
|
"mime-types": "latest",
|
|
"parse-torrent": "latest",
|
|
"tippy.js": "latest",
|
|
"webtorrent": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"notyf": "latest",
|
|
"terser": "latest",
|
|
"watchify": "latest"
|
|
},
|
|
"scripts": {
|
|
"watch": "watchify parse.js -o bundle.js",
|
|
"compile": "browserify parse.js -o bundle.js",
|
|
"minify": "terser bundle.js -c -m -o bundle.min.js",
|
|
"build": "npm run compile && npm run minify"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/leoherzog/TorrentParts.git"
|
|
},
|
|
"author": "Leo Herzog",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/leoherzog/TorrentParts/issues"
|
|
},
|
|
"homepage": "https://github.com/leoherzog/TorrentParts"
|
|
}
|