-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "react-source-lens",
"version": "1.4.0",
"type": "module",
"description": "A React development tool that lets you inspect the source code of components by hovering and pressing Cmd+Shift+O",
"main": "./dist/react-source-lens.cjs.js",
"module": "./dist/react-source-lens.es.js",
"exports": {
".": {
"import": "./dist/react-source-lens.es.js",
"require": "./dist/react-source-lens.cjs.js"
},
"./babel-plugin": "./babel-source-plugin.cjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"babel-source-plugin.cjs",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"keywords": [
"react",
"development",
"debugging",
"source-code",
"inspection",
"devtools"
],
"author": "Olebogeng Mbedzi",
"repository": {
"type": "git",
"url": "https://github.com/darula-hpp/react-source-lens.git"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.36.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^4.0.8",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"jsdom": "^27.1.0",
"typescript": "^5.0.0",
"vite": "npm:rolldown-vite@7.1.14",
"vitest": "^4.0.8"
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}