-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.08 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
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
{
"name": "@masknet/eslint-plugin",
"packageManager": "[email protected]",
"type": "module",
"version": "0.3.0",
"description": "eslint plugin for masknet",
"publishConfig": {
"access": "public"
},
"keywords": [
"eslint",
"eslint-plugin"
],
"homepage": "https://dimensiondev.github.io/eslint-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/DimensionDev/eslint-plugin"
},
"license": "MIT",
"main": "lib/index.js",
"exports": {
"./schema.json": "./lib/schema.json",
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./configs/": "./lib/configs/",
"./rules/": "./lib/rules/"
},
"files": [
"src/",
"lib/",
"!src/scripts",
"!lib/scripts",
"!src/spec.ts",
"!lib/spec.*",
"!lib/**/*.spec.js",
"!lib/**/*.spec.d.ts"
],
"scripts": {
"generate": "node --loader ts-node/esm/transpile-only ./src/scripts/generate/index.ts",
"lint": "eslint . --fix",
"markdownlint": "markdownlint .",
"prepare": "husky install",
"spellcheck": "cspell lint --relative --no-progress '**'",
"test": "vitest",
"tsc": "tsc -p ."
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"cspell"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.0.0",
"@masknet/config": "^0.2.1",
"@types/glob": "^8.1.0",
"commitlint": "^19.2.2",
"cspell": "^8.7.0",
"eslint": "^9.0.0",
"eslint-plugin-eslint-plugin": "^6.0.0",
"eslint-plugin-import": "^2.29.1",
"glob": "^10.3.12",
"globals": "^15.0.0",
"husky": "^9.0.11",
"json-schema-to-typescript": "^13.1.2",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.2.5",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0",
"vitest": "^1.5.0"
},
"peerDependencies": {
"eslint": ">= 8"
},
"engines": {
"node": ">= 18"
}
}