-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "@starbeam-dev/eslint-plugin",
"version": "1.1.0",
"type": "module",
"main": "dist/index.cjs",
"types": "src/index.ts",
"exports": {
"types": "./src/index.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"scripts": {
"prepare": "rollup -c",
"prepack": "rollup -c",
"test:lint": "eslint . --max-warnings 0",
"test:types": "tsc -b"
},
"dependencies": {
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-file-extension-in-import-ts": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"jsonc-eslint-parser": "^2.4.0",
"eslint-plugin-comment-length": "^1.7.3",
"prettier": "^3.3.2"
},
"devDependencies": {
"@eslint/eslintrc": "^2.1.4",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.6.5",
"@types/node": "^20.14.9",
"eslint": "^8.52.0",
"rollup": "^4.18.0",
"typescript": "^5.2.2",
"rollup-plugin-swc3": "^0.10.4"
},
"peerDependencies": {
"eslint": "^8.57.0",
"typescript": "^5.5.2"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"rollup": "4"
}
}
}
}