-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.42 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
{
"name": "skillgym",
"version": "0.10.0",
"private": false,
"description": "Prove your agent skills work before you ship them.",
"keywords": [
"agents",
"benchmark",
"cli",
"codex",
"opencode",
"testing"
],
"homepage": "https://github.com/callstackincubator/skillgym#readme",
"bugs": {
"url": "https://github.com/callstackincubator/skillgym/issues"
},
"license": "MIT",
"author": "Szymon Chmal",
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/skillgym.git"
},
"bin": {
"skillgym": "./bin.js"
},
"files": [
"dist",
"bin.js",
"skills"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cli": "./dist/cli.js"
},
"scripts": {
"build": "npm run build:runtime && npm run build:declarations",
"build:declarations": "tsc -p ./tsconfig.build.json",
"build:runtime": "esbuild ./src/index.ts ./src/cli.ts --bundle --packages=external --platform=node --format=esm --target=node22 --outdir=./dist",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"prepare": "husky",
"prepublish": "npm run build",
"skillgym": "tsx ./index.ts",
"skillgym:help": "tsx ./index.ts help",
"skillgym:example:basic": "tsx ./index.ts run ./examples/basic-suite.ts",
"skillgym:example:skill-selection": "tsx ./index.ts run ./examples/skill-selection-suite.ts",
"test": "npm run build:runtime && vitest run",
"typecheck": "tsc -p ./tsconfig.json --noEmit"
},
"dependencies": {
"@types/node": ">=22.18.0",
"cli-spinners": "^3.4.0",
"commander": "^13.1.0",
"nano-spawn": "^2.1.0",
"picocolors": "^1.1.1",
"pretty-ms": "^9.2.0",
"string-width": "^7.2.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"esbuild": "^0.25.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.47.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}