-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "@shipgirl/eslint-config",
"version": "0.4.0",
"author": "0t4u",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shipgirlproject/eslint-config.git"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup --config tsup.config.js",
"lint": "eslint .",
"prepare": "npm run build"
},
"dependencies": {
"@augu/eslint-config": "^5.2.4",
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"globals": "^15.9.0",
"typescript-eslint": "^8.7.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/eslint__js": "^8.42.3",
"tsup": "^8.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0",
"eslint": "^9.0.0"
}
}