-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.9 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.9 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
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
{
"name": "call-graph",
"displayName": "Call Graph",
"description": "call graph for vscode",
"version": "1.2.3",
"publisher": "LuoZhihao",
"engines": {
"vscode": "^1.65.0"
},
"packageManager": "pnpm@9.13.2",
"categories": [
"Visualization"
],
"activationEvents": [
"onCommand:CallGraph.showOutgoingCallGraph",
"onCommand:CallGraph.showIncomingCallGraph",
"onWebviewPanel:CallGraph.previewIncoming",
"onWebviewPanel:CallGraph.previewOutgoing"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "CallGraph.showOutgoingCallGraph",
"title": "CallGraph: Show outgoing call graph"
},
{
"command": "CallGraph.showIncomingCallGraph",
"title": "CallGraph: Show incoming call graph"
}
],
"menus": {
"editor/context": [
{
"command": "CallGraph.showOutgoingCallGraph"
},
{
"command": "CallGraph.showIncomingCallGraph"
}
]
},
"configuration": {
"title": "CallGraph",
"properties": {
"call-graph.ignoreFile": {
"type": "string",
"default": "${workspace}/.callgraphignore",
"description": "the file that specific paths should ignore"
},
"call-graph.maxDepth": {
"type": "number",
"default": 0,
"description": "the graph max depth. Set to 0 for unlimited depth"
}
}
}
},
"scripts": {
"deploy": "vsce publish --no-dependencies",
"deploy_ovsx": "ovsx publish --no-dependencies",
"vscode:prepublish": "pnpm run check-types && node esbuild.mjs --production",
"check-types": "tsc --noEmit",
"compile": "pnpm run check-types && node esbuild.mjs",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.mjs --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"pretest": "pnpm run compile && pnpm run lint",
"package": "vsce package --no-dependencies",
"lint": "eslint src",
"format": "prettier --write .",
"test": "echo \"Test is't yet implemented\" && exit 0",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "1.65.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"glob": "^11.0.0",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"npm-run-all": "^4.1.5",
"ovsx": "^0.10.1",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/beicause/call-graph.git"
},
"license": "Apache",
"icon": "images/icon.webp",
"bugs": {
"url": "https://github.com/beicause/call-graph/issues"
},
"homepage": "https://github.com/beicause/call-graph/blob/master/README.md",
"keywords": [
"graphviz",
"call graph",
"dot"
],
"dependencies": {
"ignore": "^6.0.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,json,html}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
}
}