-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "@react-doctor/core",
"version": "0.2.14",
"private": true,
"description": "Internal: diagnostic engine for React Doctor (lint runner, scoring, config, suppressions). Not published.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./schemas": {
"types": "./dist/schemas.d.ts",
"default": "./dist/schemas.js"
}
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && cross-env NODE_ENV=production vp pack",
"test": "vp test run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@effect/platform-node-shared": "4.0.0-beta.70",
"deslop-js": "^0.0.14",
"effect": "4.0.0-beta.70",
"oxlint": "^1.66.0",
"oxlint-plugin-react-doctor": "workspace:*",
"picomatch": "^4.0.4",
"typescript": "^6.0.3"
},
"optionalDependencies": {
"@react-doctor/compiler-native": "workspace:*"
},
"devDependencies": {
"@effect/vitest": "4.0.0-beta.70",
"@types/node": "^25.6.0",
"@types/picomatch": "^4.0.3"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}