-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.54 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
{
"name": "@hapi/oxc-plugin",
"version": "1.0.2",
"description": "Oxlint & Oxfmt plugin containing hapi style guide rules and config",
"keywords": [
"hapi",
"lint",
"oxfmt",
"oxlint"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/hapijs/oxc-plugin.git"
},
"files": [
"src"
],
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js"
},
"./oxlint": {
"types": "./src/configs/recommended.d.ts",
"import": "./src/configs/recommended.js"
},
"./oxfmt": {
"types": "./src/configs/oxfmt.config.d.ts",
"import": "./src/configs/oxfmt.config.js"
},
"./vitest": {
"types": "./src/vitest.d.ts",
"import": "./src/vitest.js"
}
},
"scripts": {
"test": "vitest run",
"lint": "oxlint && oxfmt --check",
"lint:fix": "oxlint --fix && oxfmt --write"
},
"dependencies": {
"@oxlint/plugins": "^1.72.0"
},
"devDependencies": {
"@hapi/oxc-plugin": "file:.",
"@vitest/coverage-v8": "^4.1.9",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"vitest": "^4.1.9"
},
"peerDependencies": {
"oxfmt": ">=0.57.0",
"oxlint": ">=1.72.0"
},
"engines": {
"node": ">=22"
}
}