-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.24 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.24 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
131
132
133
134
135
136
137
138
139
140
141
142
{
"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"
},
"packageManager": "pnpm@11.0.8",
"icon": "assets/socket-icon-brand-256.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": {
"build": "pnpm run esbuild",
"check": "node scripts/check.mts",
"check:paths": "node scripts/check-paths.mts",
"clean": "node -e \"require('node:fs').rmSync('out',{recursive:true,force:true})\"",
"compile": "pnpm run esbuild",
"cover": "pnpm run test -- --coverage",
"esbuild": "pnpm exec esbuild --bundle --external:tree-sitter-java --external:vscode --loader:.wasm=binary --loader:.go=file --loader:.py=text --outdir=out/ --platform=node --format=cjs main=src/extension.ts --define:EXTENSION_VERSION=\"\\\"$npm_package_version\\\"\"",
"fix": "node scripts/fix.mts",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "node scripts/lint.mts",
"lockstep": "node scripts/lockstep.mts",
"lockstep:emit-schema": "node scripts/lockstep-emit-schema.mts",
"package-for-vscode": "vsce package --no-dependencies",
"prepare": "husky",
"security": "node scripts/security.mts",
"test": "node scripts/test.mts",
"test-compile": "tsc -p ./",
"update": "node scripts/update.mts",
"vscode:prepublish": "pnpm run esbuild --minify",
"vscode:uninstall": "node ./src/lifecycle/uninstall.mjs"
},
"dependencies": {
"@socketsecurity/lib": "catalog:",
"@vscode/python-extension": "1.0.6",
"acorn-wasm": "workspace:*",
"ini": "6.0.0",
"json-wasm": "workspace:*",
"toml-eslint-parser": "1.0.3"
},
"devDependencies": {
"@types/ini": "4.1.1",
"@types/node": "catalog:",
"@types/vscode": "1.118.0",
"@typescript/native-preview": "7.0.0-dev.20260415.1",
"@vitest/coverage-v8": "4.1.5",
"@vscode/vsce": "3.9.1",
"esbuild": "0.28.0",
"husky": "9.1.7",
"oxfmt": "0.37.0",
"oxlint": "1.52.0",
"taze": "19.11.0",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"repository": {
"url": "https://github.com/SocketDev/vscode-socket-security"
}
}