-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "oxc-standard",
"version": "1.4.0",
"description": "Fast, comprehensive TypeScript/React linting with JavaScript Standard Style philosophy using oxlint",
"keywords": [
"deno",
"eslint",
"formatter",
"lint",
"linter",
"oxc",
"oxfmt",
"oxlint",
"prettier",
"react",
"standard",
"typescript"
],
"homepage": "https://github.com/JohnDeved/ox-standard#readme",
"bugs": {
"url": "https://github.com/JohnDeved/ox-standard/issues"
},
"license": "MIT",
"author": "Johann Berger <johann@objekt.stream>",
"repository": {
"type": "git",
"url": "git+https://github.com/JohnDeved/ox-standard.git"
},
"bin": {
"oxc-standard": "dist/setup-oxlint.js",
"setup-oxlint": "dist/setup-oxlint.js"
},
"files": [
".oxlintrc.json",
".oxfmtrc.json",
"dist/",
".vscode"
],
"publishConfig": {
"access": "public"
},
"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",
"test:setup": "npm run build && vitest run setup-test/",
"lint": "oxlint --fix .; oxfmt .",
"fix": "npm run lint; npm run format",
"build": "tsc && (printf '#!/usr/bin/env node\n'; tail -n +2 dist/setup-oxlint.js) > dist/setup-oxlint.js.tmp && mv dist/setup-oxlint.js.tmp dist/setup-oxlint.js && chmod +x dist/setup-oxlint.js",
"prepublishOnly": "npm run build && npm run lint && npx vitest run",
"test": "vitest run"
},
"dependencies": {
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0"
},
"devDependencies": {
"@types/node": "^25.6.2",
"tsx": "^4.21.0",
"typescript": "^5.6.0",
"vitest": "^4.1.5"
},
"peerDependencies": {
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0"
},
"engines": {
"node": ">=18"
}
}