-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "@raycast/eslint-plugin",
"version": "2.1.1",
"description": "ESLint plugin designed to help Raycast's extensions authors follow best practices",
"author": "Raycast Technologies Ltd.",
"keywords": [
"raycast",
"eslint",
"eslintplugin",
"eslint-plugin"
],
"license": "MIT",
"main": "./dist/index.js",
"files": [
"dist",
"api.js",
"api.d.ts",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"type:check": "tsc --noEmit",
"test": "jest",
"test:ci": "jest --ci",
"preupdate:docs": "npm run build",
"update:docs": "eslint-doc-generator",
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:docs --check\"",
"lint:ts": "eslint .",
"prepublish": "npm run build"
},
"dependencies": {
"@typescript-eslint/utils": "^8.26.1"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@typescript-eslint/parser": "^8.26.0",
"@typescript-eslint/rule-tester": "^8.26.1",
"eslint": "^9.22.0",
"eslint-doc-generator": "^2.1.2",
"eslint-plugin-eslint-plugin": "^6.4.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6"
},
"peerDependencies": {
"eslint": ">=8.23.0"
}
}