-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 973 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 973 Bytes
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
{
"name": "@koddsson/eslint-plugin-tscompat",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"lint": "eslint lib/ tests/ index.js",
"build": "esbuild index.js lib/**/* --outdir=dist --platform=node --format=esm",
"test": "tsx --test tests/tscompat.ts "
},
"exports": {
".": "./dist/index.js"
},
"files": [
"docs/",
"dist/"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mdn/browser-compat-data": "^7.0.0",
"@typescript-eslint/type-utils": "^8.0.1",
"@typescript-eslint/utils": "^8.0.0",
"browserslist": "^4.23.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/eslint": "^9.6.0",
"@types/node": "^25.6.0",
"@typescript-eslint/parser": "^8.33.0",
"@typescript-eslint/rule-tester": "^8.33.0",
"esbuild": "^0.28.0",
"eslint-plugin-eslint-plugin": "^7.0.0",
"tsx": "^4.7.2",
"typescript-eslint": "^8.0.0"
}
}