-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 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
63
64
65
{
"name": "netlify-plugin-react-doctor",
"version": "0.1.0",
"description": "Netlify Build Plugin that runs React Doctor before deploys",
"keywords": [
"lint",
"netlify",
"netlify-plugin",
"performance",
"react",
"react-doctor"
],
"bugs": {
"url": "https://github.com/millionco/netlify-plugin-react-doctor/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/millionco/netlify-plugin-react-doctor.git"
},
"files": [
"dist",
"manifest.yml",
"README.md"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm --sourcemap --clean && tsc -p tsconfig.build.json",
"dev": "bun test --watch",
"start": "bun src/index.ts",
"lint": "oxlint --type-aware",
"format": "oxfmt",
"test": "vitest run",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"react-doctor": "^0.2.9",
"zod": "^4.4.3"
},
"devDependencies": {
"@factory/eslint-plugin": "latest",
"@types/bun": "latest",
"@types/node": "^25.9.1",
"@typescript/native-preview": "^7.0.0-dev.20260510.1",
"netlify-cli": "^26.0.2",
"oxclippy": "^0.2.0",
"oxfmt": "latest",
"oxlint": "latest",
"oxlint-tsgolint": "latest",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}