@commencis/eslint-config 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +102 -0
- package/dist/configs/base.d.ts +8 -0
- package/dist/configs/base.js +155 -0
- package/dist/configs/next.d.ts +6 -0
- package/dist/configs/next.js +192 -0
- package/dist/configs/prettier.d.ts +6 -0
- package/dist/configs/prettier.js +9 -0
- package/dist/configs/react.d.ts +6 -0
- package/dist/configs/react.js +191 -0
- package/dist/configs/typescript.d.ts +6 -0
- package/dist/configs/typescript.js +23 -0
- package/dist/configs/vue.d.ts +6 -0
- package/dist/configs/vue.js +190 -0
- package/dist/flatConfig-CFiBdxNB.d.ts +18 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +223 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@commencis/eslint-config",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Commencis ESLint config",
|
|
5
|
+
"author": "Commencis WEB Team",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"homepage": "https://github.com/Commencis/js-toolkit/packages/eslint-config#readme",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/Commencis/js-toolkit/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/Commencis/js-toolkit.git",
|
|
15
|
+
"directory": "packages/eslint-config"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"*.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/index.js",
|
|
29
|
+
"types": "./dist/index.d.ts"
|
|
30
|
+
},
|
|
31
|
+
"./base": {
|
|
32
|
+
"import": "./dist/configs/base.js",
|
|
33
|
+
"types": "./dist/configs/base.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"./next": {
|
|
36
|
+
"import": "./dist/configs/next.js",
|
|
37
|
+
"types": "./dist/configs/next.d.ts"
|
|
38
|
+
},
|
|
39
|
+
"./prettier": {
|
|
40
|
+
"import": "./dist/configs/prettier.js",
|
|
41
|
+
"types": "./dist/configs/prettier.d.ts"
|
|
42
|
+
},
|
|
43
|
+
"./react": {
|
|
44
|
+
"import": "./dist/configs/react.js",
|
|
45
|
+
"types": "./dist/configs/react.d.ts"
|
|
46
|
+
},
|
|
47
|
+
"./typescript": {
|
|
48
|
+
"import": "./dist/configs/typescript.js",
|
|
49
|
+
"types": "./dist/configs/typescript.d.ts"
|
|
50
|
+
},
|
|
51
|
+
"./vue": {
|
|
52
|
+
"import": "./dist/configs/vue.js",
|
|
53
|
+
"types": "./dist/configs/vue.d.ts"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@eslint/js": "9.6.0",
|
|
58
|
+
"@next/eslint-plugin-next": "14.2.4",
|
|
59
|
+
"@typescript-eslint/utils": "8.0.0-alpha.30",
|
|
60
|
+
"eslint-config-prettier": "9.1.0",
|
|
61
|
+
"eslint-plugin-jsx-a11y": "6.9.0",
|
|
62
|
+
"eslint-plugin-prettier": "5.1.3",
|
|
63
|
+
"eslint-plugin-react": "7.34.3",
|
|
64
|
+
"eslint-plugin-react-hooks": "4.6.2",
|
|
65
|
+
"eslint-plugin-simple-import-sort": "12.1.0",
|
|
66
|
+
"eslint-plugin-vue": "9.26.0",
|
|
67
|
+
"globals": "15.6.0",
|
|
68
|
+
"typescript-eslint": "8.0.0-alpha.30"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@types/eslint__js": "8.42.3",
|
|
72
|
+
"tsup": "8.1.0",
|
|
73
|
+
"typescript": "5.4.5",
|
|
74
|
+
"@commencis/ts-config": "0.0.1"
|
|
75
|
+
},
|
|
76
|
+
"peerDependencies": {
|
|
77
|
+
"eslint": ">= 9"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"dev": "tsup --watch",
|
|
81
|
+
"build": "tsup",
|
|
82
|
+
"lint:types": "tsc --noEmit"
|
|
83
|
+
}
|
|
84
|
+
}
|