-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.35 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.35 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
{
"name": "@zotero-plugin/eslint-config",
"type": "module",
"version": "0.6.9",
"packageManager": "[email protected]",
"description": "ESLint config for zotero plugin.",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/zotero-plugin-dev/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zotero-plugin-dev/eslint-config.git"
},
"bugs": {
"url": "https://github.com/zotero-plugin-dev/eslint-config/issues"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"scripts": {
"dev:tsdown": "tsdown --watch src",
"dev:inspector": "eslint-config-inspector --config ./playground/eslint-inspector.config.ts --basePath playground",
"build": "pnpm build:typegen && pnpm build:tsc && pnpm build:tsdown",
"build:tsdown": "tsdown",
"build:typegen": "tsx scripts/typegen.ts",
"build:tsc": "tsc --noEmit",
"build:inspector": "eslint-config-inspector build --config ./playground/eslint-inspector.config.ts --basePath playground",
"typecheck": "tsc --noEmit",
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "bumpp --commit \"chore(release): publish v%s\"",
"update:deps": "pnpx taze minor -w -f -l -r",
"prepare": "husky"
},
"peerDependencies": {
"eslint": "^9.10.0 || ^10.0.3"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"eslint-config-flat-gitignore": "^2.3.0",
"eslint-plugin-chai-friendly": "^1.1.1",
"eslint-plugin-mocha": "^11.2.0",
"typescript-eslint": "^8.58.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@eslint/config-inspector": "^1.5.0",
"@types/node": "^25.5.0",
"bumpp": "^11.0.1",
"eslint": "^10.1.0",
"eslint-plugin-format": "^2.0.1",
"eslint-typegen": "^2.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"lint-staged": {
"*": [
"prettier --write",
"eslint --fix"
]
},
"prettier": {}
}