-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@commencis/eslint-config",
"version": "3.6.0",
"description": "Commencis ESLint config",
"author": "Commencis WEB Team",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/Commencis/js-toolkit/tree/main/packages/eslint-config#readme",
"bugs": {
"url": "https://github.com/Commencis/js-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Commencis/js-toolkit.git",
"directory": "packages/eslint-config"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"files": [
"dist",
"*.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./javascript": {
"types": "./dist/configs/javascript.d.mts",
"import": "./dist/configs/javascript.mjs"
},
"./typescript": {
"types": "./dist/configs/typescript.d.mts",
"import": "./dist/configs/typescript.mjs"
},
"./react": {
"types": "./dist/configs/react.d.mts",
"import": "./dist/configs/react.mjs"
},
"./next": {
"types": "./dist/configs/next.d.mts",
"import": "./dist/configs/next.mjs"
},
"./native": {
"types": "./dist/configs/native.d.mts",
"import": "./dist/configs/native.mjs"
}
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@next/eslint-plugin-next": "16.2.3",
"@typescript-eslint/utils": "8.58.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "13.0.0",
"globals": "17.5.0",
"typescript-eslint": "8.58.2"
},
"devDependencies": {
"@commencis/ts-config": "1.0.0",
"eslint": "9.39.4"
},
"peerDependencies": {
"eslint": ">=9.39"
}
}