-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.03 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@ivosabev/config",
"version": "4.0.5",
"description": "Reusable Oxlint, Oxfmt, TypeScript configs.",
"keywords": [
"config",
"ecmascript",
"formatter",
"javascript",
"lint",
"oxfmt",
"oxlint",
"typescript"
],
"homepage": "https://github.com/ivosabev/eslint-config-ivolution#readme",
"bugs": {
"url": "https://github.com/ivosabev/eslint-config-ivolution/issues"
},
"license": "MIT",
"author": "Ivo Sabev <ivolution@gmail.com> (http://ivosabev.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/ivosabev/eslint-config-ivolution.git"
},
"type": "module",
"main": "index.js",
"imports": {
"#/*": "./*"
},
"exports": {
".": "./index.js",
"./oxfmt": "./.oxfmtrc.json",
"./oxlint": "./.oxlintrc.json",
"./typescript/base": "./typescript/base.json",
"./typescript/build": "./typescript/build.json",
"./typescript/dom": "./typescript/dom.json",
"./typescript/node": "./typescript/node.json",
"./typescript/reset.d.ts": "./typescript/reset.d.ts"
},
"scripts": {
"format": "oxfmt",
"format-check": "oxfmt --check",
"lint": "oxlint",
"lint-check": "oxlint",
"release": "pnpm run validate && release-it",
"typecheck": "tsgo",
"validate": "run-p -l lint format typecheck",
"up": "corepack use pnpm@latest && pnpm update --interactive --latest"
},
"dependencies": {
"@total-typescript/ts-reset": "0.6.1",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"oxlint-tsgolint": "0.22.1",
"ts-plugin-sort-import-suggestions": "1.0.4"
},
"devDependencies": {
"@types/react": "19.2.14",
"@typescript/native-preview": "7.0.0-dev.20260427.1",
"npm-run-all": "4.1.5",
"react": "19.2.5",
"release-it": "20.0.1"
},
"engines": {
"node": ">=20.19.0"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}