forked from dvanoni/notero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.09 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "notero",
"version": "0.4.7",
"description": "Sync Zotero items into a Notion database",
"scripts": {
"build": "node esbuild.js",
"clean": "rm -r build gen xpi",
"generateUpdateManifest": "zotero-plugin-generate-update",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"postbuild": "zotero-plugin-zipup build notero",
"postinstall": "patch-package",
"prepare": "husky install",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"release": "zotero-plugin-release",
"start": "zotero-start",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"verify": "run-p lint prettier typecheck test",
"version": "standard-version --sign"
},
"repository": {
"type": "git",
"url": "https://github.com/dvanoni/notero.git"
},
"author": {
"name": "David Hoff-Vanoni",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/dvanoni/notero/issues"
},
"homepage": "https://github.com/dvanoni/notero",
"dependencies": {
"@notionhq/client": "^2.2.3",
"core-js": "^3.29.1",
"eventemitter3": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@dvanoni/zotero-plugin": "^1.8.0",
"@types/jest": "^29.5.0",
"@types/react": "^17.0.55",
"@types/react-dom": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"esbuild": "^0.17.15",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"npm-run-all": "^4.1.5",
"patch-package": "^6.5.1",
"prettier": "2.8.7",
"react-intl": "^3.12.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"xpi": {
"name": "Notero",
"bootstrapped": true,
"releaseURL": "https://github.com/dvanoni/notero/releases/download/release/"
}
}