-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 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
{
"name": "skillscore",
"version": "2.0.2",
"description": "A CLI tool that evaluates AI agent skills and produces quality scores",
"main": "dist/index.js",
"bin": {
"skillscore": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"skills",
"evaluation",
"scoring",
"openclaw",
"cli"
],
"author": "Joey Rodriguez <info@socialwithjoey.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joeynyc/skillscore.git"
},
"bugs": {
"url": "https://github.com/joeynyc/skillscore/issues"
},
"homepage": "https://github.com/joeynyc/skillscore#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"yaml": "^2.3.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-plugin-node": "^11.1.0",
"globals": "^17.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}