-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@titanom/eslint-config",
"version": "1.2.0",
"description": "Default ESLint config for projects at Titanom Technologies",
"repository": {
"type": "git",
"url": "git+https://github.com/titanom/eslint-config.git"
},
"author": "Jannis Morgenstern <[email protected]> (https://github.com/Jannis-Morgenstern)",
"license": "MIT",
"bugs": {
"url": "https://github.com/titanom/eslint-config/issues"
},
"homepage": "https://github.com/titanom/eslint-config#readme",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsup && fix-tsup-cjs",
"release": "pnpm build && changeset publish"
},
"exports": {
"./base": {
"require": "./dist/base.js",
"import": "./dist/base.mjs",
"types": "./dist/base.d.ts"
},
"./typescript": {
"require": "./dist/typescript.js",
"import": "./dist/typescript.mjs",
"types": "./dist/typescript.d.ts"
},
"./react": {
"require": "./dist/react.js",
"import": "./dist/react.mjs",
"types": "./dist/react.d.ts"
},
"./next": {
"require": "./dist/next.js",
"import": "./dist/next.mjs",
"types": "./dist/next.d.ts"
},
"./globals": {
"require": "./dist/globals.js",
"import": "./dist/globals.mjs",
"types": "./dist/globals.d.ts"
}
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@titanom/prettier-config": "1.0.3",
"@titanom/tsconfig": "0.2.0",
"@types/node": "20.5.7",
"eslint": "8.48.0",
"fix-tsup-cjs": "1.2.0",
"prettier": "3.0.2",
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"dependencies": {
"@next/eslint-plugin-next": "13.4.19",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"globals": "13.21.0"
},
"peerDependencies": {
"eslint": ">=8.23.0",
"react": ">=18",
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"react": {
"optional": true
}
},
"engines": {
"node": ">=18",
"pnpm": "8"
}
}