-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.25 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
{
"name": "synapse-bridge",
"version": "1.0.0",
"description": "Synapse Bridge",
"config": {
"addonName": "Synapse Bridge",
"addonID": "hello@cognitionlabs.dev",
"addonRef": "synapsebridge",
"addonInstance": "SynapseBridge",
"prefsPrefix": "extensions.zotero.synapsebridge",
"releasepage": "https://github.com/Cognition-Labs/synapse-bridge/releases/latest/download/zotero-addon-template.xpi",
"updaterdf": "https://raw.githubusercontent.com/windingwind/zotero-addon-template/bootstrap/update.json"
},
"main": "src/index.ts",
"scripts": {
"build-dev": "cross-env NODE_ENV=development node scripts/build.mjs",
"build-prod": "cross-env NODE_ENV=production node scripts/build.mjs",
"build": "concurrently -c auto npm:build-prod npm:tsc",
"tsc": "tsc --noEmit",
"start-z6": "node scripts/start.mjs --z 6",
"start-z7": "node scripts/start.mjs --z 7",
"start": "node scripts/start.mjs",
"stop": "node scripts/stop.mjs",
"restart-dev": "npm run build-dev && npm run stop && npm run start",
"restart-prod": "npm run build-prod && npm run stop && npm run start",
"restart": "npm run restart-dev",
"release": "release-it",
"lint": "prettier --write . && eslint . --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cognition-Labs/synapse-bridge.git"
},
"author": "windingwind",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Cognition-Labs/synapse-bridge/issues"
},
"homepage": "https://github.com/Cognition-Labs/synapse-bridge#readme",
"dependencies": {
"zotero-plugin-toolkit": "^2.1.3"
},
"devDependencies": {
"@types/node": "^20.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"compressing": "^1.9.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"minimist": "^1.2.8",
"prettier": "2.8.8",
"release-it": "^15.10.3",
"replace-in-file": "^6.3.5",
"typescript": "^5.0.4",
"zotero-types": "^1.0.14"
},
"prettier": {
"tabWidth": 2
}
}