musescore-downloader/package.json

72 lines
2.2 KiB
JSON
Raw Normal View History

2019-11-03 19:13:06 +00:00
{
"name": "musescore-downloader",
2020-11-23 20:58:34 +00:00
"version": "0.15.20",
2019-11-12 04:45:16 +00:00
"description": "download sheet music from musescore.com for free, no login or Musescore Pro required | 免登录、免 Musescore Pro免费下载 musescore.com 上的曲谱",
2019-11-03 19:13:06 +00:00
"main": "dist/main.js",
2020-11-24 18:11:19 +00:00
"bin": "dist/cli.js",
2019-11-03 19:13:06 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/Xmader/musescore-downloader.git"
},
"author": "Xmader",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xmader/musescore-downloader/issues"
},
"homepage": "https://github.com/Xmader/musescore-downloader#readme",
"homepage_url": "https://github.com/Xmader/musescore-downloader#readme",
"manifest_version": 2,
2020-10-29 21:41:31 +00:00
"browser_specific_settings": {
"gecko": {
"id": "{69856097-6e10-42e9-acc7-0c063550c7b8}"
}
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"*://musescore.com/*/*"
],
"js": [
"src/web-ext.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"dist/main.js"
],
"dependencies": {
2020-11-24 10:19:31 +00:00
"@librescore/fonts": "^0.2.1",
"@librescore/sf3": "^0.3.0",
2020-11-24 10:08:18 +00:00
"detect-node": "^2.0.4",
2020-11-24 10:19:31 +00:00
"node-fetch": "^2.6.1",
2020-09-27 16:21:27 +00:00
"webmscore": "^0.10.4"
},
2019-11-03 19:13:06 +00:00
"devDependencies": {
"@rollup/plugin-json": "^4.0.0",
"@types/file-saver": "^2.0.1",
"@types/pdfkit": "^0.10.4",
2020-11-24 18:11:19 +00:00
"pdfkit": "git+https://github.com/Xmader/pdfkit.git",
2019-11-03 19:13:06 +00:00
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
2020-11-12 17:13:14 +00:00
"rollup-plugin-string": "^3.0.0",
2019-11-03 19:13:06 +00:00
"rollup-plugin-typescript": "^1.0.1",
2020-11-24 18:11:19 +00:00
"svg-to-pdfkit": "^0.1.8",
2019-11-03 19:13:06 +00:00
"tslib": "^1.10.0",
2020-11-04 23:22:41 +00:00
"typescript": "^4.1.1-rc"
2019-11-03 19:13:06 +00:00
},
"scripts": {
"build": "rollup -c",
"watch": "npm run build -- --watch",
2020-10-29 21:41:31 +00:00
"start:ext": "web-ext run --url https://musescore.com/",
"start:ext-chrome": "npm run start:ext -- -t chromium",
2020-10-29 20:59:16 +00:00
"pack:ext": "zip -r dist/ext.zip manifest.json src/web-ext.js dist/main.js",
2020-10-30 19:21:25 +00:00
"bump-version:patch": "npm version patch --no-git-tag && npm run build",
"bump-version:minor": "npm version minor --no-git-tag && npm run build"
2019-11-03 19:13:06 +00:00
}
}