-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 KB
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
{
"name": "zotero-plugins",
"type": "module",
"version": "0.0.0",
"private": "true",
"packageManager": "pnpm@10.30.3",
"description": "Zotero 插件合集",
"author": "northword",
"license": "MIT",
"homepage": "https://github.com/northword/zotero-plugins#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/northword/zotero-plugins.git"
},
"bugs": {
"url": "https://github.com/northword/zotero-plugins/issues"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"data:info": "tsx src/index.ts fetchPlugins",
"data:chart": "tsx src/index.ts charts",
"debug:info": "cross-env NODE_ENV=development npm run data:info",
"debug:chart": "cross-env NODE_ENV=development npm run data:chart",
"lint:fix": "eslint . --fix",
"lint:check": "eslint .",
"prepare": "husky",
"build": "bash .github/scripts/build.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@highcharts/dashboards": "^3.6.0",
"@types/adm-zip": "^0.5.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.11.0",
"adm-zip": "^0.5.16",
"consola": "^3.4.2",
"cross-env": "10.1.0",
"es-toolkit": "^1.44.0",
"eslint": "^10.0.2",
"franc-min": "^6.2.0",
"fs-extra": "^11.3.3",
"globby": "^16.1.1",
"highcharts": "^12.5.0",
"husky": "^9.1.7",
"jsonc": "^2.0.0",
"lint-staged": "^16.3.0",
"octokit": "^5.0.5",
"ofetch": "^1.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.*": "eslint --fix"
}
}