-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.55 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
{
"name": "@dungle-scrubs/skillval",
"version": "0.4.0",
"description": "Deterministic evaluation for agent skills",
"keywords": [
"agent-skills",
"agents",
"cli",
"codex",
"evaluation",
"skill-md",
"testing"
],
"type": "module",
"bin": {
"skillval": "dist/cli.js"
},
"files": [
"dist",
"schemas",
"skill",
"LICENSE",
"README.md"
],
"scripts": {
"build": "pnpm build:ui && tsup src/cli.ts --clean --format esm --platform node --sourcemap --target node22",
"format": "biome format --write .",
"lint": "biome check .",
"prepare": "pnpm build",
"schema": "tsx scripts/generate-schemas.ts",
"schema:check": "tsx scripts/generate-schemas.ts --check",
"test": "vitest run",
"typecheck": "tsc --noEmit && tsc -p report-ui",
"build:ui": "vite build --config report-ui/vite.config.ts && node scripts/embed-report-ui.mjs",
"assets:check": "git diff --stat --exit-code -- src/generated/report-assets.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dungle-scrubs/skillval.git"
},
"bugs": {
"url": "https://github.com/dungle-scrubs/skillval/issues"
},
"homepage": "https://github.com/dungle-scrubs/skillval#readme",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.28.2",
"dependencies": {
"@ast-grep/napi": "^0.45.0",
"@types/node": "^22.0.0",
"ajv": "^8.20.0",
"commander": "^15.0.0",
"typebox": "^1.3.6",
"typescript": "^7.0.2",
"yaml": "^2.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@radix-ui/react-collapsible": "^1.1.20",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-tooltip": "^1.2.16",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^28.0.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jsdom": "^29.1.1",
"lefthook": "^2.1.10",
"lucide-react": "^1.26.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-wrap-balancer": "^1.1.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tsup": "^8.5.0",
"tsx": "^4.23.1",
"tw-animate-css": "^1.4.0",
"vite": "^8.1.5",
"vitest": "^4.1.9"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.28.1"
}
}
}