-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.13 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.13 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
{
"name": "isnad-scan",
"displayName": "ISNAD Scan — AI Skill Security",
"description": "Inline security warnings for AI agent skills. Detects code injection, prompt injection, credential exfiltration, and supply chain attacks.",
"version": "0.1.0",
"publisher": "counterspec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/counterspec/isnad-vscode"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"security",
"ai",
"agent",
"skill",
"scanner",
"isnad"
],
"activationEvents": [
"workspaceContains:**/SKILL.md",
"workspaceContains:**/AGENTS.md",
"onCommand:isnad-scan.scanWorkspace",
"onCommand:isnad-scan.scanFile"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "isnad-scan.scanWorkspace",
"title": "ISNAD: Scan Workspace"
},
{
"command": "isnad-scan.scanFile",
"title": "ISNAD: Scan Current File"
}
],
"configuration": {
"title": "ISNAD Scan",
"properties": {
"isnad-scan.pythonPath": {
"type": "string",
"default": "python3",
"description": "Path to Python interpreter (must have isnad-scan installed)"
},
"isnad-scan.scanOnSave": {
"type": "boolean",
"default": true,
"description": "Automatically scan files on save"
},
"isnad-scan.scanOnOpen": {
"type": "boolean",
"default": true,
"description": "Automatically scan files when opened"
},
"isnad-scan.showInfoFindings": {
"type": "boolean",
"default": false,
"description": "Show INFO-level findings (verbose)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "npx @vscode/vsce package --no-dependencies"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"@vscode/vsce": "^2.22.0"
}
}