-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
60
61
62
63
64
65
66
67
68
{
"name": "@huuyafwww/eslint-config-common",
"version": "1.0.6",
"private": false,
"description": "ESLint config for me",
"homepage": "https://github.com/huuyafwww/eslint-config",
"bugs": {
"url": "https://github.com/huuyafwww/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huuyafwww/eslint-config.git"
},
"license": "MIT",
"type": "module",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "pkgroll --minify",
"build:watch": "pkgroll --watch",
"clean": "rimraf node_modules",
"lint:code": "eslint . --cache",
"lint:type": "tsc --pretty --noEmit",
"sort:package": "sort-package-json"
},
"dependencies": {
"@eslint/js": "^9.16.0",
"@praha/eslint-config-definer": "^2.0.0",
"@stylistic/eslint-plugin": "^2.12.0",
"@stylistic/eslint-plugin-ts": "^2.12.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript-eslint": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.9.3",
"eslint": "9.14.0",
"pkgroll": "^2.5.1",
"rimraf": "^6.0.1",
"sort-package-json": "^2.12.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": "9.14.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}