-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
145 lines (145 loc) · 3.46 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "react-labyrinth",
"displayName": "React Labyrinth",
"description": "React Component Type hierarchy tree visualization tool",
"version": "1.0.2",
"icon": "./media/reactLabyrinthFinal.png",
"publisher": "react-labyrinth",
"preview": false,
"engines": {
"vscode": "^1.85.1"
},
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/React-Labyrinth/tree/main"
},
"categories": [
"Other"
],
"keywords": [
"react",
"rsc",
"react components",
"hierarchy tree",
"parent-child",
"visualizer",
"server component",
"client component",
"react server components"
],
"license": "MIT",
"pricing": "Free",
"activationEvents": [
"onStartupFinished"
],
"main": "./build/extension.js",
"contributes": {
"commands": [
{
"command": "myExtension.showPanel",
"title": "Show Panel",
"category": "React Labyrinth"
},
{
"command": "myExtension.pickFile",
"title": "Pick File",
"category": "React Labyrinth"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "react-labyrinth",
"title": "React Labyrinth",
"icon": "/media/RL(Final).png"
}
]
},
"views": {
"react-labyrinth": [
{
"id": "tree-render",
"name": "Tree"
}
]
},
"viewsWelcome": [
{
"view": "tree-render",
"contents": "View tree to see component types!\n[View Tree](command:myExtension.pickFile)\n"
}
]
},
"scripts": {
"vscode:prepublish": "npm run prod",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npx tsc ; node ./build/src/test/runTest.js",
"tests": "node ./build/src/test/runTest.js",
"dev": "webpack --mode development --config webpack.config.ts --watch",
"prod": "webpack --mode production --config webpack.config.ts",
"compile": "tsc -p ./",
"coverage": "jest --coverage",
"deploy": "vsce publish",
"package": "vsce package"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/node": "18.x",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/vscode": "^1.84.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.23.0",
"eslint": "^8.54.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/core": "^7.23.3",
"@babel/parser": "^7.23.9",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"babel": "^6.23.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"d3": "^7.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.10.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.89.0"
},
"babel": {
"presets": [
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
}
}