-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 KB
/
package.json
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
{
"name": "zotero-plugin-scaffold",
"type": "module",
"version": "0.2.0-beta.22",
"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": "^3.12.1",
"@types/node": "^22.10.2",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vitest": "^2.1.8"
},
"workspaces": [
"packages/*",
"docs"
],
"lint-staged": {
"*": "eslint --fix"
}
}