This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "zotero-plugin-registry",
"type": "module",
"version": "0.0.0",
"private": "true",
"packageManager": "[email protected]",
"description": "Zotero Plugin Registry",
"author": "northword",
"license": "MIT",
"homepage": "https://github.com/zotero-plugin-dev/zotero-plugin-registry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zotero-plugin-dev/zotero-plugin-registry.git"
},
"scripts": {
"run": "tsx scripts/build.ts",
"build": "pnpm dev --all",
"check-pr": "pnpm dev --pr",
"generate-schema": "bash scripts/schema.sh",
"lint:fix": "eslint . --fix",
"lint:check": "eslint .",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/adm-zip": "^0.5.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"adm-zip": "^0.5.16",
"axios": "^1.13.2",
"consola": "^3.4.2",
"cross-env": "10.1.0",
"es-toolkit": "^1.42.0",
"eslint": "^9.39.1",
"fs-extra": "^11.3.2",
"globby": "^15.0.0",
"husky": "^9.1.7",
"jsonc": "^2.0.0",
"lint-staged": "^16.2.7",
"octokit": "^5.0.5",
"ofetch": "^1.5.1",
"prettier": "^3.7.3",
"ts-json-schema-generator": "^2.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.*": "eslint --fix"
}
}