-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.45 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.45 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
{
"name": "skill-check",
"version": "1.2.0",
"description": "Linter for agent skill files",
"type": "module",
"private": false,
"bin": {
"skill-check": "bin/skill-check.js"
},
"files": [
"bin",
"dist",
"schemas",
"skills",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/cli/main.ts",
"check": "tsx src/cli/main.ts check .",
"check:fix": "tsx src/cli/main.ts check . --fix --no-security-scan",
"check:security": "tsx src/cli/main.ts check . --security-scan --allow-installs",
"security-scan": "tsx src/cli/main.ts security-scan .",
"demo:readme": "bash scripts/readme-demo.sh",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"smoke:cli": "bash scripts/smoke-cli.sh",
"report": "tsx src/cli/main.ts report .",
"lint": "biome check --no-errors-on-unmatched .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "pnpm run clean && pnpm run build",
"format": "biome format --write .",
"prepare": "lefthook install"
},
"keywords": [
"skills",
"agent-skills",
"lint",
"validator",
"cli",
"sarif"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thedaviddias/skill-check.git"
},
"license": "MIT",
"publishConfig": {
"provenance": true,
"access": "public"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"@resvg/resvg-js": "^2.6.2",
"boxen": "^8.0.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"listr2": "^10.1.0",
"minimatch": "^10.2.2",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@commitlint/config-conventional": "^20.4.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.4",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"commitlint": "^20.4.2",
"lefthook": "^2.1.1",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a"
}