-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "bandcamp-volume-control",
"version": "1.0.2",
"description": "It's a volume control for Bandcamp audio player. The extension adds another slider (somewhere around the one that controls the track progress) to control the volume.",
"main": "src/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --sourcemap --target=es2015 --outfile=dist/content.js",
"watch": "watchexec -f 'src/**' -- npm run build",
"package": "npm run build && cd dist && web-ext build",
"prebuild": "rm -rf dist",
"postbuild": "cp -a meta/* dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/butterknight/bandcamp-volume-control.git"
},
"keywords": [
"bandcamp",
"volume",
"control"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/butterknight/bandcamp-volume-control/issues"
},
"homepage": "https://github.com/butterknight/bandcamp-volume-control#readme",
"devDependencies": {
"@types/chrome": "^0.0.200",
"esbuild": "^0.15.11"
}
}