-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "yet-another-pinboard-extension",
"version": "1.5.1",
"description": "Browser extension for pinboard (including omnibar search and actionbar button popup)",
"main": "/dist/manifest.json",
"dependencies": {
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"typescript": "^4.8.4",
"web-ext": "^7.6.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copytodist": "mkdir .\\dist\\vendor\\webextension-polyfill & mkdir .\\dist\\js & mkdir .\\dist\\html && mkdir .\\dist\\css & mkdir .\\dist\\img & copy /y .\\node_modules\\webextension-polyfill\\dist\\*.min.js* .\\dist\\vendor\\webextension-polyfill & copy /y .\\src\\img\\*.* .\\dist\\img & copy /y .\\src\\html\\*.* .\\dist\\html & copy /y .\\src\\css\\*.* .\\dist\\css & copy /y .\\src\\manifest.json .\\dist\\manifest.json",
"tsc": "tsc",
"copyandbuild": "npm run copytodist && npm run tsc",
"build": "npm run tsc",
"web-ext": "web-ext run --source-dir=dist/ --firefox=nightly --devtools",
"web-ext-lint": "cd dist && web-ext lint",
"package": "web-ext build --source-dir=dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seeba8/yet-another-pinboard-extension.git"
},
"keywords": [
"browser",
"extension",
"pinboard",
"firefox",
"chrome"
],
"author": "seeba8",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/seeba8/yet-another-pinboard-extension/issues"
},
"homepage": "https://github.com/seeba8/yet-another-pinboard-extension"
}