@unshared/eslint-config 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/LICENSE.md +21 -0
  2. package/dist/index.cjs +1358 -0
  3. package/package.json +69 -0
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@unshared/eslint-config",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "license": "MIT",
6
+ "sideEffects": false,
7
+ "author": "Stanley Horwood <stanley@hsjm.io>",
8
+ "bugs": "https://github.com/shorwood/unshared/issues",
9
+ "homepage": "https://github.com/shorwood/unshared#readme",
10
+ "repository": {
11
+ "directory": "packages/eslint-config",
12
+ "type": "git",
13
+ "url": "git+ssh://https://github.com/shorwood/unshared"
14
+ },
15
+ "main": "./dist/index.cjs",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "require": "./dist/index.cjs",
21
+ "types": "./dist/index.d.ts",
22
+ "import": "./dist/index.js"
23
+ }
24
+ },
25
+ "files": [
26
+ "lib",
27
+ "README.md",
28
+ "LICENSE.md"
29
+ ],
30
+ "peerDependencies": {
31
+ "eslint": ">=9",
32
+ "typescript": ">=5"
33
+ },
34
+ "peerDependenciesMeta": {
35
+ "typescript": {
36
+ "optional": true
37
+ }
38
+ },
39
+ "dependencies": {
40
+ "@eslint/eslintrc": "3.0.2",
41
+ "@eslint/js": "9.1.1",
42
+ "@stylistic/eslint-plugin": "1.7.2",
43
+ "eslint-plugin-antfu": "2.1.2",
44
+ "eslint-plugin-eslint-comments": "3.2.0",
45
+ "eslint-plugin-html": "8.1.1",
46
+ "eslint-plugin-import": "2.29.1",
47
+ "eslint-plugin-jsdoc": "48.2.3",
48
+ "eslint-plugin-jsonc": "2.15.1",
49
+ "eslint-plugin-markdown": "4.0.1",
50
+ "eslint-plugin-n": "17.3.1",
51
+ "eslint-plugin-perfectionist": "2.10.0",
52
+ "eslint-plugin-promise": "6.1.1",
53
+ "eslint-plugin-sonarjs": "0.25.1",
54
+ "eslint-plugin-unicorn": "52.0.0",
55
+ "eslint-plugin-vitest": "0.5.4",
56
+ "eslint-plugin-vue": "9.25.0",
57
+ "eslint-plugin-yml": "1.14.0",
58
+ "jsonc-eslint-parser": "2.4.0",
59
+ "typescript-eslint": "7.7.1",
60
+ "vue-eslint-parser": "9.4.2",
61
+ "yaml-eslint-parser": "1.2.2"
62
+ },
63
+ "devDependencies": {
64
+ "@types/eslint__eslintrc": "2.1.1",
65
+ "@types/eslint__js": "8.42.3",
66
+ "eslint": "9.1.1",
67
+ "typescript": "5.4.5"
68
+ }
69
+ }