-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.83 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
{
"name": "eslint-plugin-import-sorting",
"version": "2.2.0",
"description": "ESLint plugin to group and sort imports by module, à la Python isort",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"import",
"isort",
"order",
"python",
"sort"
],
"repository": "stormwarning/eslint-plugin-import-sorting",
"author": "Jeff (https://tidaltheory.io)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"docs",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"scripts": {
"build": "vite build",
"changeset": "changeset add",
"prepare": "husky install",
"release": "npm run build && changeset publish",
"test": "vitest run",
"update:eslint-docs": "eslint-doc-generator"
},
"lint-staged": {
"*.{js,cjs,mjs,ts}": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"prettier": "@zazen/prettier-config",
"dependencies": {
"@typescript-eslint/utils": "7.18.0",
"object.groupby": "1.0.1"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@types/eslint": "8.44.8",
"@types/node": "20.10.4",
"@typescript-eslint/rule-tester": "7.18.0",
"@zazen/changesets-changelog": "2.0.3",
"@zazen/eslint-config": "6.9.0",
"@zazen/prettier-config": "1.1.1",
"c8": "8.0.1",
"dedent": "1.5.3",
"eslint": "8.57.1",
"eslint-doc-generator": "1.6.1",
"eslint-plugin-eslint-plugin": "5.1.1",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"prettier": "3.1.0",
"prettier-plugin-packagejson": "2.4.6",
"typescript": "5.2.2",
"vite-plugin-dts": "4.0.3",
"vitest": "2.0.5"
},
"engines": {
"node": ">=16.17.0 || >=18.6.0"
}
}