generated from MuiseDestiny/zotero-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 2.57 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": "zotero-citation",
"version": "0.4.8",
"description": "Easier Citation for Zotero",
"config": {
"addonName": "Easier Citation",
"addonID": "[email protected]",
"addonRef": "zoterocitation",
"addonInstance": "ZoteroCitation",
"releasepage": "https://github.com/muisedestiny/eaiser-citation/releases/latest/download/zotero-citation.xpi",
"updaterdf": "https://raw.githubusercontent.com/muisedestiny/zotero-citation/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": "node scripts/start.mjs",
"start-watch": "npm run build-dev && concurrently -c auto npm:start npm:watch",
"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",
"reload": "npm run build-dev && node scripts/reload.mjs",
"watch": "chokidar \"src/**\" \"addon/**\" -c \"npm run reload\"",
"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/muisedestiny/zotero-citation.git"
},
"author": "Polygon",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/muisedestiny/zotero-citation/issues"
},
"homepage": "https://github.com/muisedestiny/zotero-citation#readme",
"dependencies": {
"child_process": "^1.0.2",
"path": "^0.12.7",
"zotero-plugin-toolkit": "^3.0.3"
},
"devDependencies": {
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chokidar-cli": "^3.0.0",
"compressing": "^1.9.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.19",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"minimist": "^1.2.8",
"prettier": "3.0.0",
"release-it": "^15.11.0",
"replace-in-file": "^6.3.5",
"typescript": "^5.1.6",
"zotero-types": "^1.0.16"
}
}