-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.07 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.07 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
{
"name": "@resolid/config",
"version": "5.3.12",
"description": "Oxlint and Typescript config",
"keywords": [
"oxfmt",
"oxlint",
"resolid",
"typescript"
],
"homepage": "https://www.resolid.tech",
"license": "MIT",
"author": "Huijie Wei",
"repository": {
"type": "git",
"url": "git+https://github.com/resolid/config.git"
},
"files": [
"oxfmt",
"oxlint",
"tsconfig"
],
"type": "module",
"sideEffects": false,
"exports": {
"./oxfmt": {
"types": "./oxfmt/index.d.ts",
"import": "./oxfmt/index.js"
},
"./oxlint/*": {
"types": "./oxlint/*.d.ts",
"import": "./oxlint/*.js"
},
"./tsconfig/*.json": "./tsconfig/*.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"format": "oxfmt",
"lint": "oxlint",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.9.3",
"lefthook": "^2.1.6",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^6.0.3"
},
"peerDependencies": {
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.9.3",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^6.0.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"oxlint-tsgolint": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"eslint-plugin-react-you-might-not-need-an-effect": {
"optional": true
}
},
"engines": {
"node": "^22.13.0 || >=24"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
],
"overrides": {
"safer-buffer": "npm:@nolyfill/safer-buffer@^1"
}
}
}