-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 956 Bytes
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
{
"name": "ox-standard",
"version": "0.2.0",
"description": "Fast, comprehensive TypeScript/React linting with JavaScript Standard Style philosophy using oxlint",
"author": "Johann Berger <johann@objekt.stream>",
"bin": {
"ox-standard": "./setup-oxlint.ts",
"setup-oxlint": "./setup-oxlint.ts"
},
"files": [
".oxlintrc.json",
".oxfmtrc.json",
"setup-oxlint.ts",
".vscode"
],
"scripts": {
"test:lint": "vitest run lint-test/all-lint-rules.test.ts",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test:format": "vitest run lint-test/format.test.ts",
"lint": "oxlint --fix .; oxfmt .",
"fix": "npm run lint; npm run format"
},
"dependencies": {
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"vitest": "^4.1.2"
},
"peerDependencies": {
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0"
}
}