-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.43 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jump-graph",
"displayName": "Jump Graph",
"description": "Explore large-scale codebases with ease",
"version": "0.0.4",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/chelproc/jump-graph.git"
},
"publisher": "chelproc",
"engines": {
"vscode": "^1.80.0"
},
"browser": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "jump-graph.new",
"title": "Jump Graph: New Untitled Graph..."
},
{
"command": "jump-graph.push",
"title": "Jump Graph: Push Current Source Position to Graph",
"when": "editorTextFocus"
},
{
"command": "jump-graph.pop",
"title": "Jump Graph: Pop Current Node and Jump to Last Node"
}
],
"customEditors": [
{
"viewType": "jump-graph.editor",
"displayName": "Jump Graph",
"selector": [
{
"filenamePattern": "*.jump-graph"
}
],
"priority": "default"
}
],
"languages": [
{
"id": "jump-graph",
"extensions": [
".jump-graph"
],
"aliases": [
"Jump Graph",
"jg"
]
}
]
},
"scripts": {
"dev": "vscode-test-web --extensionDevelopmentPath=. .",
"build": "npm run build:web && npm run build:extension",
"watch": "concurrently npm:watch:web npm:watch:extension",
"build:web": "esbuild ./web/main.tsx --target=es2022 --bundle --jsx=automatic --outfile=./dist/web.js",
"watch:web": "npm run build:web -- --watch --sourcemap=inline",
"build:extension": "esbuild ./extension/index.ts --format=cjs --target=es2022 --bundle --external:vscode --loader:.js=text --loader:.css=text --outfile=./dist/extension.js",
"watch:extension": "npm run build:extension -- --watch --sourcemap=inline",
"package": "vsce package -o ./dist/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0",
"reactflow": "^11.9.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@types/uuid": "^9.0.5",
"@types/vscode": "^1.80.0",
"@types/vscode-webview": "^1.57.2",
"@vscode/test-web": "^0.0.46",
"@vscode/vsce": "^2.21.1",
"concurrently": "^8.2.1",
"esbuild": "^0.19.4",
"typescript": "^5.2.2"
}
}