-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 4.47 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
{
"name": "@wix/pathgrade",
"version": "1.0.1",
"packageManager": "yarn@4.12.0",
"description": "Evaluate whether AI agents discover and use your skills correctly",
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/pathgrade.git"
},
"installConfig": {
"selfReferences": true
},
"exports": {
".": {
"types": "./dist/sdk/index.d.ts",
"default": "./dist/sdk/index.js"
},
"./plugin": {
"types": "./dist/plugin/index.d.ts",
"default": "./dist/plugin/index.js"
},
"./plugin/vitest": {
"types": "./dist/adapters/vitest/index.d.ts",
"default": "./dist/adapters/vitest/index.js"
},
"./adapters/vitest": {
"types": "./dist/adapters/vitest/index.d.ts",
"default": "./dist/adapters/vitest/index.js"
},
"./adapters/node-test": {
"types": "./dist/adapters/node-test/index.d.ts",
"default": "./dist/adapters/node-test/index.js"
},
"./adapters/jest": {
"types": "./dist/adapters/jest/index.d.ts",
"default": "./dist/adapters/jest/index.js"
},
"./adapters/jest/setup": {
"types": "./dist/adapters/jest/setup.d.ts",
"default": "./dist/adapters/jest/setup.js"
},
"./adapters/jest/reporter": {
"types": "./dist/adapters/jest/reporter.d.ts",
"default": "./dist/adapters/jest/reporter.cjs"
},
"./adapter-kit": {
"types": "./dist/adapter-kit/index.d.ts",
"default": "./dist/adapter-kit/index.js"
},
"./mcp-mock": {
"types": "./dist/core/mcp-mock.d.ts",
"default": "./dist/core/mcp-mock.js"
},
"./package.json": "./package.json"
},
"bin": "bin/pathgrade.js",
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/viewer.html",
"!dist/**/*.js.map",
"!dist/**/*.d.ts.map",
"bin/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "oxlint src tests evals examples scripts --deny-warnings --disable-unicorn-plugin --disable-oxc-plugin --allow no-unused-vars --allow no-underscore-dangle --allow no-shadow --allow preserve-caught-error --allow no-unsafe-optional-chaining --allow no-unreachable --ignore-pattern tests/fixtures --ignore-pattern .worktrees",
"knip": "yarn quality:deps",
"knip:unused": "knip --exclude binaries --no-config-hints --max-show-issues 20",
"quality:deps": "knip --dependencies --exclude binaries --no-config-hints --max-show-issues 20",
"quality:arch": "sentrux check .",
"quality:boundaries": "scripts/check-quality-boundaries.sh",
"quality:max-lines": "scripts/check-max-lines.sh .",
"quality": "yarn lint && yarn quality:deps && yarn quality:arch && yarn quality:boundaries && yarn quality:max-lines",
"test": "yarn build && vitest run && yarn test:runner-cli-smoke && yarn test:standalone-package-smoke && yarn test:release-contracts",
"test:runner-cli-smoke": "node tests/runner-cli-smoke/run-smokes.mjs",
"test:standalone-package-smoke": "node tests/standalone-package-smoke/run-smoke.mjs",
"test:release-contracts": "node tests/release-platform-evidence.test.mjs && node tests/publish-workflow-contract.test.mjs",
"test:evals": "vitest run --config evals/vitest.config.mts",
"test:coverage": "vitest run --coverage",
"dev": "tsx src/pathgrade.ts",
"build": "tsc -p tsconfig.build.json && cp src/viewer.html dist/viewer.html && cp src/adapters/jest/reporter.cjs dist/adapters/jest/reporter.cjs"
},
"keywords": [
"ai",
"agent",
"skills",
"evaluation",
"benchmark",
"gemini",
"claude",
"codex",
"openai",
"llm",
"testing"
],
"author": "Nadav Lachish",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.11.0"
},
"peerDependencies": {
"jest": "^30.0.0",
"vitest": "^4.0.0"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"vitest": {
"optional": true
}
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/picomatch": "^4.0.2",
"@vitest/coverage-v8": "4.1.7",
"jest": "^30.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.116",
"@modelcontextprotocol/sdk": "1.29.0",
"@openai/codex": "0.144.0",
"@types/node": "25.6.0",
"fs-extra": "11.3.3",
"jiti": "2.6.1",
"picomatch": "^4.0.4",
"tsx": "4.22.3",
"typescript": "^5.9.3",
"vitest": "4.1.7",
"zod": "4.3.6"
},
"resolutions": {
"fast-uri@npm:^3.0.1": "npm:3.1.2"
}
}