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",
|
|
|
|
|
"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",
|
2020-10-29 06:54:45 +00:00
|
|
|
|
"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}"
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-10-29 06:54:45 +00:00
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
|
|
|
"content_scripts": [
|
|
|
|
|
{
|
|
|
|
|
"matches": [
|
|
|
|
|
"*://musescore.com/*/*"
|
|
|
|
|
],
|
|
|
|
|
"js": [
|
2020-10-29 07:23:02 +00:00
|
|
|
|
"src/web-ext.js"
|
2020-10-29 06:54:45 +00:00
|
|
|
|
],
|
|
|
|
|
"run_at": "document_start"
|
|
|
|
|
}
|
|
|
|
|
],
|
2020-10-29 07:23:02 +00:00
|
|
|
|
"web_accessible_resources": [
|
|
|
|
|
"dist/main.js"
|
|
|
|
|
],
|
2019-12-01 07:10:51 +00:00
|
|
|
|
"dependencies": {
|
2020-01-26 06:32:54 +00:00
|
|
|
|
"pdfkit": "git+https://github.com/Xmader/pdfkit.git",
|
2020-09-27 16:20:33 +00:00
|
|
|
|
"svg-to-pdfkit": "^0.1.8",
|
2020-09-27 16:21:27 +00:00
|
|
|
|
"webmscore": "^0.10.4"
|
2019-12-01 07:10:51 +00:00
|
|
|
|
},
|
2019-11-03 19:13:06 +00:00
|
|
|
|
"devDependencies": {
|
2019-12-01 07:10:51 +00:00
|
|
|
|
"@rollup/plugin-json": "^4.0.0",
|
2019-12-01 23:30:38 +00:00
|
|
|
|
"@types/file-saver": "^2.0.1",
|
2019-12-01 08:57:54 +00:00
|
|
|
|
"@types/pdfkit": "^0.10.4",
|
2019-11-03 19:13:06 +00:00
|
|
|
|
"rollup": "^1.26.3",
|
2019-12-01 07:10:51 +00:00
|
|
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
|
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
2019-12-01 08:57:54 +00:00
|
|
|
|
"rollup-plugin-node-globals": "^1.4.0",
|
2019-12-01 07:10:51 +00:00
|
|
|
|
"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",
|
|
|
|
|
"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/",
|
2020-10-29 07:23:02 +00:00
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
}
|