forked from callumalpass/tasknotes-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.96 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.96 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "tasknotes-browser-extension",
"version": "1.2.0",
"description": "Browser extension for TaskNotes integration with Gmail and web pages",
"main": "src/background.js",
"scripts": {
"build": "npm run build:chrome && npm run build:firefox && npm run build:safari",
"build:chrome": "webpack --mode=production --env browser=chrome",
"build:firefox": "webpack --mode=production --env browser=firefox",
"build:safari": "webpack --mode=production --env browser=safari",
"dev": "webpack --mode=development --watch --env browser=chrome",
"dev:firefox": "webpack --mode=development --watch --env browser=firefox",
"dev:safari": "webpack --mode=development --watch --env browser=safari",
"test": "jest",
"lint": "eslint src/",
"package": "npm run build && npm run package:chrome && npm run package:firefox",
"package:chrome": "web-ext build --source-dir=dist/chrome --artifacts-dir=packages",
"package:firefox": "web-ext build --source-dir=dist/firefox --artifacts-dir=packages"
},
"keywords": [
"tasknotes",
"obsidian",
"gmail",
"productivity",
"task-management"
],
"author": "Callum Alpass",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.8",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"web-ext": "^7.11.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"webextension-polyfill": "^0.10.0"
},
"extensionConfig": {
"tasknotes-api-version": ">=1.0.0",
"default-api-port": 8080
},
"repository": {
"type": "git",
"url": "https://github.com/callumalpass/tasknotes-browser-extension.git"
},
"bugs": {
"url": "https://github.com/callumalpass/tasknotes-browser-extension/issues"
},
"homepage": "https://github.com/callumalpass/tasknotes-browser-extension#readme"
}