-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
28 lines (28 loc) · 1.01 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
{
"name": "maple-bookmarks",
"description": "Let you navigate smoothly while hiding the bookmark bar.",
"main": "bookmark/popup.js",
"scripts": {
"bookmark": "zip -r ./dist/Maple.zip ./bookmark",
"bookmark-firefox": "cp -R ./bookmark ./bookmark-firefox && cp ./bookmark/manifest_firefox.json ./bookmark-firefox/manifest.json && cd ./bookmark-firefox && zip -r ../dist/FirefoxMaple.zip . && cd .. && rm -rf ./bookmark-firefox",
"newtab": "zip -r ./dist/NewTab.zip ./newtab",
"theme":"zip -r ./dist/Theme.zip ./theme",
"build": "mkdir -p ./dist && yarn lint && yarn bookmark && yarn bookmark-firefox && yarn newtab && yarn theme",
"lint": "eslint . --ext .js --fix"
},
"keywords": [
"bookmarks",
"bookmark",
"chrome",
"browser-extension"
],
"author": "Tw93",
"license": "MIT",
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3"
}
}