-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (94 loc) · 2.64 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "reactive",
"displayName": "Reactive",
"publisher": "oslabs-reactive",
"icon": "images/reactive.png",
"version": "0.0.2",
"description": "A VS Code extension that visualizes React component hierarchies, helping developers understand and navigate complex React applications. Features component tree visualization, state inspection, and component type differentiation.",
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/reactive"
},
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"react",
"component hierarchy",
"devtools",
"hierarchy tree",
"hierarchy",
"parent-child",
"visualizer",
"visualization",
"react components",
"components",
"component tree",
"client component",
"rsc"
],
"activationEvents": [],
"main": "./src/server/extension.js",
"contributes": {
"commands": [
{
"command": "reactive.renderReact",
"title": "Reactive: Start"
}
]
},
"scripts": {
"build": "npm run compile && webpack --config webpack.config.js",
"build:prod": "npm run compile && webpack --config webpack.prod.js",
"compile": "tsc -p ./tsconfig.json",
"webpack": "webpack",
"watch": "concurrently \"webpack --watch\" \"tsc -watch -p ./tsconfig.json\"",
"lint": "eslint src",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.25.9",
"@babel/eslint-parser": "^7.25.8",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.13",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.13.0",
"eslint-plugin-mocha": "^10.5.0",
"glob": "^11.0.0",
"jsdom": "^25.0.1",
"typescript": "^5.6.3",
"vscode": "^1.1.37",
"concurrently": "^9.1.0"
},
"dependencies": {
"@babel/parser": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/traverse": "^7.25.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vscode/vsce": "^3.2.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"d3": "^7.9.0",
"eslint-plugin-react": "^7.36.1",
"html-webpack-plugin": "^5.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tree": "^0.1.3",
"vscode-test": "^1.6.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}