-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@epic-web/config",
"version": "0.0.0-semantically-released",
"description": "Reasonable Oxlint, Oxfmt, and TypeScript configs for epic web devs",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "index.js",
"imports": {
"#/*": "./*"
},
"exports": {
".": "./index.js",
"./oxfmt": {
"types": "./oxfmt-preset.d.ts",
"import": "./oxfmt-preset.js",
"default": "./oxfmt-preset.js"
},
"./typescript": "./typescript.json",
"./reset.d.ts": "./reset.d.ts",
"./oxlint": "./oxlint-config.json"
},
"scripts": {
"format": "oxfmt -c ./oxfmt.config.mjs",
"format:check": "oxfmt -c ./oxfmt.config.mjs --check",
"lint": "oxlint --config oxlint-config.json .",
"test": "vitest run lint-rules/*.test.js",
"typecheck": "tsc",
"validate": "run-p -l format lint typecheck"
},
"keywords": [
"config",
"epic",
"oxfmt",
"oxlint",
"typescript"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"repository": {
"type": "git",
"url": "https://github.com/epicweb-dev/config"
},
"homepage": "https://github.com/epicweb-dev/config",
"license": "MIT",
"peerDependencies": {
"oxfmt": ">=0.45.0 <1"
},
"dependencies": {
"@oxlint/plugins": "^1.60.0",
"@total-typescript/ts-reset": "^0.6.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/react": "^19.2.14",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"react": "^19.2.5",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}