-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "zotero-plugin-scaffold",
"type": "module",
"version": "0.4.1",
"private": true,
"packageManager": "[email protected]",
"author": "northword",
"scripts": {
"dev": "pnpm -r --filter=./packages/* --parallel run dev",
"build": "pnpm -r --filter=./packages/* --parallel run build",
"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"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@types/node": "^22.13.14",
"bumpp": "^10.1.0",
"eslint": "^9.23.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vitest": "^3.1.1"
},
"workspaces": [
"packages/*",
"docs"
],
"pnpm": {
"overrides": {
"@types/eslint": "npm:eslint@^9.23.0"
}
},
"lint-staged": {
"*": "eslint --fix"
}
}