-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 980 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 980 Bytes
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
{
"name": "ast-visualization",
"version": "0.1.0",
"description": "AST Visualizer for JS",
"main": "index.js",
"scripts": {
"build": "vite build",
"start": "vite"
},
"repository": {
"type": "git",
"url": "https://github.com/AdorableRedPanda/ast-visualization.git"
},
"keywords": [
"ast",
"abstract-syntax-tree",
"ast-visualization"
],
"author": "AdorableRedPanda",
"license": "ISC",
"homepage": "https://github.com/AdorableRedPanda/ast-visualization#readme",
"dependencies": {
"@babel/parser": "7.23.6",
"@babel/traverse": "7.23.6",
"@codemirror/lang-javascript": "6.2.1",
"@codemirror/theme-one-dark": "6.1.2",
"buffer": "6.0.3",
"codemirror": "6.0.1",
"vis-network": "9.1.9",
"vite": "5.1.0-beta.3"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@types/babel__traverse": "7.20.1",
"eslint": "8.54.0",
"eslint-config-redpanda": "0.1.3"
}
}