-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.74 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.74 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "zotero-plugin-scaffold",
"type": "module",
"version": "0.8.6",
"packageManager": "pnpm@10.33.0",
"description": "A scaffold for Zotero plugin development.",
"author": "northword",
"license": "AGPL-3.0-or-later",
"homepage": "https://zotero-plugin-dev.github.io/zotero-plugin-scaffold",
"repository": {
"type": "git",
"url": "https://github.com/zotero-plugin-dev/zotero-plugin-scaffold.git"
},
"bugs": {
"url": "https://github.com/zotero-plugin-dev/zotero-plugin-scaffold/issues"
},
"keywords": [
"zotero",
"plugin",
"developer",
"scaffold",
"web-ext"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"import": "./dist/cli.js"
},
"./vendor": {
"types": "./dist/vendor.d.ts",
"import": "./dist/vendor.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"zotero-plugin": "./bin/zotero-plugin.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=22.8.0"
},
"scripts": {
"dev": "tsdown --watch",
"build": "pnpm build:tsdown && pnpm build:tsc",
"build:tsdown": "tsdown",
"build:tsc": "tsc --noEmit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"release": "bumpp -r --commit \"chore(release): publish v%s\"",
"update:deps": "pnpx taze minor -w -f -l -r",
"test": "vitest",
"prepare": "husky"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"directories": {
"lib": "dist"
},
"dependencies": {
"@fluent/syntax": "^0.19.0",
"@octokit/rest": "^22.0.1",
"@swc/core": "^1.15.24",
"adm-zip": "^0.5.17",
"bumpp": "^11.0.1",
"c12": "4.0.0-beta.4",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"es-toolkit": "^1.45.1",
"esbuild": "^0.28.0",
"fs-extra": "^11.3.4",
"hookable": "^6.1.0",
"std-env": "^4.0.0",
"tiny-update-notifier": "^2.0.2",
"tinyglobby": "^0.2.16",
"xvfb-ts": "^1.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@commander-js/extra-typings": "^14.0.0",
"@types/adm-zip": "^0.5.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.6.0",
"bumpp": "^11.0.1",
"changelogen": "^0.6.2",
"eslint": "^10.2.0",
"eslint-plugin-format": "^2.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"unplugin-raw": "^0.7.0",
"vitest": "^4.1.4"
},
"workspaces": [
"src",
"docs"
],
"lint-staged": {
"*": "eslint --fix"
}
}