-
Notifications
You must be signed in to change notification settings - Fork 286
/
package.json
64 lines (64 loc) · 2.21 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
{
"name": "jasminum",
"version": "1.0.0-20",
"description": "一个简单的 Zotero 中文插件",
"config": {
"addonName": "Jasminum",
"addonID": "[email protected]",
"addonRef": "jasminum",
"addonInstance": "Jasminum",
"prefsPrefix": "extensions.jasminum",
"releasePage": "https://github.com/l0o0/jasminum/releases",
"updaterdf": "https://raw.githubusercontent.com/l0o0/jasminum/z7/update7.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/l0o0/jasminum.git"
},
"author": "l0o0",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/l0o0/jasminum/issues"
},
"homepage": "https://github.com/l0o0/jasminum#readme",
"dependencies": {
"zotero-plugin-toolkit": "^3.0.4"
},
"devDependencies": {
"@types/node": "^20.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chokidar-cli": "^3.0.0",
"compressing": "^1.9.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.18.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"minimist": "^1.2.8",
"prettier": "2.8.8",
"release-it": "^15.11.0",
"replace-in-file": "^6.3.5",
"typescript": "^5.0.4",
"zotero-types": "^1.0.14"
}
}