-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.96 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 2.96 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "eslint-config-storm-stack",
"version": "0.17.0",
"type": "module",
"description": "An ESLint configuration with linting rules that ensure a Storm Stack project is following the best practices.",
"repository": {
"type": "github",
"url": "https://github.com/storm-software/storm-stack.git",
"directory": "packages/eslint-config"
},
"homepage": "https://stormsoftware.com",
"bugs": {
"url": "https://stormsoftware.com/support",
"email": "support@stormsoftware.com"
},
"author": {
"name": "Storm Software",
"email": "contact@stormsoftware.com",
"url": "https://stormsoftware.com"
},
"maintainers": [
{
"name": "Storm Software",
"email": "contact@stormsoftware.com",
"url": "https://stormsoftware.com"
}
],
"contributors": [
{
"name": "Storm Software",
"email": "contact@stormsoftware.com",
"url": "https://stormsoftware.com"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/storm-software"
},
"license": "Apache-2.0",
"private": false,
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./index": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./preset": {
"import": {
"types": "./dist/preset.d.ts",
"default": "./dist/preset.js"
},
"require": {
"types": "./dist/preset.d.cts",
"default": "./dist/preset.cjs"
},
"default": {
"types": "./dist/preset.d.ts",
"default": "./dist/preset.js"
}
}
},
"files": [
"dist/**/*"
],
"keywords": [
"storm-stack",
"storm-software",
"eslint",
"eslint-config"
],
"peerDependencies": {
"eslint": ">=9.39.2"
},
"peerDependenciesMeta": {
"eslint": {
"optional": false
}
},
"dependencies": {
"@storm-software/config-tools": "catalog:",
"@storm-software/eslint": "catalog:",
"@storm-stack/tsdoc": "workspace:*",
"@stryke/fs": "catalog:",
"@stryke/type-checks": "catalog:",
"defu": "catalog:",
"eslint-flat-config-utils": "catalog:",
"eslint-plugin-storm-stack": "workspace:*"
},
"devDependencies": {
"@types/node": "catalog:",
"chalk-template": "catalog:",
"eslint": "catalog:",
"eslint-typegen": "catalog:",
"tsup": "catalog:",
"tsx": "catalog:"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}