-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 948 Bytes
/
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
{
"name": "send-to-todoist-ext",
"version": "0.0.0-dev",
"description": "A web extension for quickly creating tasks in todoist",
"type": "module",
"scripts": {
"build": "web-ext build --overwrite-dest",
"watch:ext": "web-ext run -f='/Applications/Firefox Developer Edition.app/Contents/MacOS/firefox-bin' --url='todoist.com'",
"sign": "web-ext sign --api-key=$SIGNING_KEY --api-secret=$SIGNING_SECRET --channel=listed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hipsterbrown/send-to-todoist.git"
},
"keywords": [
"web-extension"
],
"author": "Hipsterbrown",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hipsterbrown/send-to-todoist/issues"
},
"homepage": "https://github.com/hipsterbrown/send-to-todoist#readme",
"devDependencies": {
"@types/webextension-polyfill": "^0.10.1",
"firefox-webext-types": "^1.0.0",
"web-ext": "^7.6.2"
}
}