-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.16 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "zotero-plugin-scaffold",
"type": "module",
"version": "0.2.0",
"packageManager": "[email protected]",
"description": "A scaffold for Zotero plugin development.",
"author": "northword",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/northword/zotero-plugin-scaffold#readme",
"repository": {
"type": "git",
"url": "https://github.com/northword/zotero-plugin-scaffold.git",
"directory": "packages/scaffold"
},
"bugs": {
"url": "https://github.com/northword/zotero-plugin-scaffold/issues"
},
"keywords": [
"zotero",
"plugin",
"developer",
"scaffold",
"web-ext"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./cli": {
"import": "./dist/cli.mjs"
},
"./vendor": {
"types": "./dist/vendor/index.d.ts",
"import": "./dist/vendor/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"zotero-plugin": "./bin/zotero-plugin.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=22.13.1"
},
"scripts": {
"dev": "unbuild --stub",
"build": "tsc --noEmit && unbuild",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"directories": {
"lib": "dist"
},
"peerDependencies": {
"conventional-changelog": "^6.0.0"
},
"peerDependenciesMeta": {
"conventional-changelog": {
"optional": true
}
},
"dependencies": {
"@commander-js/extra-typings": "^13.1.0",
"adm-zip": "^0.5.16",
"bumpp": "^10.0.1",
"c12": "^2.0.1",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"es-toolkit": "^1.32.0",
"esbuild": "^0.24.2",
"fs-extra": "^11.3.0",
"hookable": "^5.5.3",
"octokit": "^4.1.0",
"std-env": "^3.8.0",
"tiny-update-notifier": "^2.0.0",
"tinyglobby": "^0.2.10",
"xvfb-ts": "^1.1.0"
},
"devDependencies": {
"@gitee/typescript-sdk-v5": "^5.4.86",
"@types/adm-zip": "^0.5.7",
"@types/fs-extra": "^11.0.4"
}
}