-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 KB
/
package.json
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
72
73
74
75
76
77
{
"name": "rsbuild-plugin-react-inspector",
"version": "0.1.0",
"description": "📦 📦 rsbuild plugin react inspector",
"scripts": {
"build": "tsup && cp -r ./src/core ./dist && cp -r ./src/client ./dist",
"dev": "tsup --watch src",
"lint": "eslint .",
"format": "prettier --write .",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp -r && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"src/client/load.js",
"src/core/applyInspector.js"
],
"keywords": [
"rsbuild",
"plugin",
"print"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@rsbuild/core": "^1.1.8",
"@types/node": "^20.17.9",
"bumpp": "^9.8.1",
"eslint": "^8.57.1",
"eslint-config-relaxed-ts": "^2.0.34",
"esno": "^0.17.0",
"magic-string": "^0.30.14",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=14",
"@rsbuild/core": ">=0.2.13"
},
"dependencies": {
"@nozomuikuta/h3-cors": "^0.2.2",
"@rsbuild/shared": "^0.0.17",
"get-port-please": "^3.1.2",
"h3": "^1.13.0",
"launch-editor": "^2.9.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/rsbuild-plugin-react-inspector"
},
"bugs": {
"url": "https://github.com/hunghg255/rsbuild-plugin-react-inspector/issues"
},
"homepage": "https://github.com/hunghg255/rsbuild-plugin-react-inspector#readme"
}