-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.38 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
45
{
"name": "zotodo",
"version": "0.10.1",
"description": "Add papers imported to Zotero as Todoist tasks",
"scripts": {
"lint": "eslint . --ext .ts --cache --cache-location .eslintcache/",
"prebuild": "npm run lint",
"build": "tsc --noEmit && node esbuild.js",
"postbuild": "zotero-plugin-zipup build zotodo",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/wbthomason/zotodo.git"
},
"author": {
"name": "Wil Thomason",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/wbthomason/zotodo/issues"
},
"homepage": "https://github.com/wbthomason/zotodo",
"dependencies": {
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"esbuild": "^0.14.51",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"zotero-plugin": "^1.4.8"
},
"xpi": {
"name": "Zotodo",
"updateLink": "https://github.com/wbthomason/zotodo/releases/download/v{version}/zotodo-{version}.xpi",
"releaseURL": "https://github.com/wbthomason/zotodo/releases/download/release/"
}
}