-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.27 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.27 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
{
"name": "agent-skill-lint",
"displayName": "Agent Skill Lint",
"description": "Lint SKILL.md files (agent skill definitions) using skillscheck",
"version": "0.1.0",
"author": {
"name": "Frank Denis",
"email": "github@pureftpd.org"
},
"publisher": "jedisct1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swival/vscode-agent-skill-lint"
},
"bugs": {
"url": "https://github.com/swival/vscode-agent-skill-lint/issues"
},
"homepage": "https://agentskills.io",
"icon": "icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Linters"
],
"keywords": [
"agent",
"skill",
"SKILL.md",
"lint",
"skillscheck",
"copilot",
"agentskills"
],
"activationEvents": [
"workspaceContains:**/SKILL.md"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "agentSkillLint.run",
"title": "Agent Skill Lint: Run Now"
},
{
"command": "agentSkillLint.clearDiagnostics",
"title": "Agent Skill Lint: Clear Diagnostics"
}
],
"configuration": {
"title": "Agent Skill Lint",
"properties": {
"agentSkillLint.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable the linter"
},
"agentSkillLint.strict": {
"type": "boolean",
"default": false,
"description": "Pass --strict flag (treat warnings as errors)"
},
"agentSkillLint.runOnSave": {
"type": "boolean",
"default": true,
"description": "Lint on save"
},
"agentSkillLint.checks": {
"type": "string",
"default": "",
"description": "Comma-separated check categories (e.g. spec,quality)"
},
"agentSkillLint.agents": {
"type": "string",
"default": "",
"description": "Comma-separated agent adapters (or 'all')"
},
"agentSkillLint.executable": {
"type": "string",
"default": "",
"description": "Path to skillscheck binary; empty = auto-detect (uvx → pipx → global)"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"build": "node esbuild.js",
"watch": "tsc -watch -p ./",
"pretest": "tsc -p ./",
"test": "mocha 'dist/test/**/*.test.js' --exclude 'dist/test/integration/**'",
"test:integration": "node ./dist/test/integration/runTests.js",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"vscode:prepublish": "node esbuild.js --production",
"package": "npx @vscode/vsce package",
"publish": "npx @vscode/vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vscode/test-electron": "^2.3.8",
"esbuild": "^0.20.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}