generated from reliverse/eslint-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "@reliverse/eslint-plugin",
"version": "0.3.0",
"description": "Reliverse ESLint Plugin",
"scripts": {
"docs": "eslint-doc-generator",
"build": "tsup src/index.ts --format cjs,esm --dts --outDir lib --minify",
"pub": "pnpm publish --access public --no-git-checks",
"dev": "vitest",
"test": "vitest run",
"lint": "pnpm eslint . && pnpm typecheck && pnpm test",
"ci": "pnpm lint && pnpm build",
"typecheck": "tsc --noEmit"
},
"files": ["lib"],
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"types": "./lib/index.d.ts",
"main": "lib/index.js",
"keywords": ["eslint", "plugin"],
"type": "module",
"author": "reliverse",
"license": "MIT",
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.9.0",
"@types/eslint": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.3.0",
"@typescript-eslint/rule-tester": "^8.1.0",
"auto": "^11.2.0",
"eslint": "^9.9.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"globals": "^15.9.0",
"knip": "^5.27.2",
"tsup": "^8.2.4",
"typescript": "5.6.0-beta",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
},
"dependencies": {
"@typescript-eslint/utils": "^8.1.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
}
}