-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.32 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.32 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
126
127
128
129
130
{
"name": "vscode-socket-security",
"displayName": "Socket Security",
"description": "Editor integration with Socket Security",
"version": "2.0.3",
"private": true,
"preview": false,
"categories": [
"Linters",
"Programming Languages"
],
"tags": [
"Code Analysis",
"Code Quality",
"JavaScript",
"Python",
"Security",
"Static Code Analysis",
"TypeScript"
],
"keywords": [
"Code Analysis",
"Code Quality",
"JavaScript",
"Python",
"Security",
"Static Code Analysis",
"TypeScript"
],
"license": "MIT",
"engines": {
"vscode": "^1.63.0"
},
"icon": "socket-square.png",
"activationEvents": [
"workspaceContains:**/[pP][aA][cC][kK][aA][gG][eE].[jJ][sS][oO][nN]",
"workspaceContains:**/[rR][eE][qQ][uU][iI][rR][eE][mM][eE][nN][tT][sS].[tT][xX][tT]",
"workspaceContains:**/[pP][yY][pP][rR][oO][jJ][eE][cC][tT].[tT][oO][mM][lL]",
"workspaceContains:**/[pP][iI][pP][fF][iI][lL][eE]",
"workspaceContains:**/[gG][oO].[mM][oO][dD]",
"workspaceContains:**/[gG][oO].[sS][uU][mM]",
"onLanguage:python",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:go"
],
"type": "commonjs",
"main": "./out/main.js",
"homepage": "https://socket.dev",
"contributes": {
"configuration": {
"title": "Socket Security",
"properties": {
"socket-security.pythonInterpreter": {
"order": 1,
"type": "string",
"description": "Path to a Python interpreter to use for Socket dependency analysis.",
"examples": [
"/usr/bin/python"
]
},
"socket-security.goExecutable": {
"order": 2,
"type": "string",
"description": "Path to a Go executable to use for Socket dependency analysis.",
"examples": [
"/usr/bin/go"
]
}
}
},
"commands": [
{
"title": "Login",
"category": "Socket Security",
"command": "socket-security.login"
}
],
"mcpServerDefinitionProviders": [
{
"id": "socket-security.mcp-server",
"label": "[Extension] Socket Security"
}
]
},
"bugs": {
"email": "support@socket.dev"
},
"publisher": "SocketSecurity",
"scripts": {
"vscode:prepublish": "npm run esbuild -- --minify",
"vscode:uninstall": "node ./src/lifecycle/uninstall.mjs",
"esbuild-base": "esbuild --bundle --external:tree-sitter-java --external:vscode --loader:.wasm=binary --loader:.go=file --loader:.py=text --outdir=out/ --platform=node --sourcemap",
"esbuild": "npm run esbuild-base -- --format=cjs main=src/extension.ts --define:EXTENSION_VERSION=\"\\\"$npm_package_version\\\"\"",
"test-compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"compile": "npm run esbuild",
"package-for-vscode": "vsce package --dependencies"
},
"dependencies": {
"@babel/parser": "^7.20.7",
"@babel/traverse": "^7.20.7",
"@babel/types": "^7.20.7",
"@socketsecurity/config": "^2.0.0",
"@socketsecurity/registry": "^1.0.66",
"@vscode/python-extension": "^1.0.5",
"@vscode/vsce": "^3.6.0",
"ini": "^5.0.0",
"json-to-ast": "^2.1.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.7",
"@types/ini": "^1.3.31",
"@types/json-to-ast": "^2.1.2",
"@types/micromatch": "^4.0.2",
"@types/node": "^24.0.15",
"@types/vscode": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"esbuild": "^0.25.8",
"eslint": "^8.26.0",
"toml-eslint-parser": "^0.6.0",
"typescript": "^4.8.4"
},
"repository": {
"url": "https://github.com/SocketDev/vscode-socket-security"
}
}