-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.28 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
86
87
88
{
"name": "@commencis/eslint-config",
"version": "1.5.5",
"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": "git+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.ts",
"import": "./dist/index.js"
},
"./base": {
"types": "./dist/configs/base.d.ts",
"import": "./dist/configs/base.js"
},
"./next": {
"types": "./dist/configs/next.d.ts",
"import": "./dist/configs/next.js"
},
"./prettier": {
"types": "./dist/configs/prettier.d.ts",
"import": "./dist/configs/prettier.js"
},
"./react": {
"types": "./dist/configs/react.d.ts",
"import": "./dist/configs/react.js"
},
"./react-native": {
"types": "./dist/configs/react-native.d.ts",
"import": "./dist/configs/react-native.js"
},
"./typescript": {
"types": "./dist/configs/typescript.d.ts",
"import": "./dist/configs/typescript.js"
},
"./vue": {
"types": "./dist/configs/vue.d.ts",
"import": "./dist/configs/vue.js"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@eslint/js": "9.17.0",
"@next/eslint-plugin-next": "15.1.3",
"@typescript-eslint/utils": "8.19.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vue": "9.32.0",
"globals": "15.14.0",
"typescript-eslint": "8.19.0"
},
"devDependencies": {
"@commencis/ts-config": "workspace:*",
"@types/eslint__js": "8.42.3",
"tsup": "8.3.5",
"typescript": "5.7.2"
},
"peerDependencies": {
"eslint": ">= 9.7"
}
}