-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 837 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 837 Bytes
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
{
"name": "skillx",
"type": "module",
"version": "0.10.1",
"private": true,
"packageManager": "pnpm@10.32.1",
"description": "A predictable hub for local and subscribed AI agent skills.",
"author": {
"name": "viarotel",
"email": "viarotel@qq.com"
},
"engines": {
"node": ">=20"
},
"scripts": {
"sync": "node scripts/sync-skills.mjs",
"sync:dry-run": "node scripts/sync-skills.mjs --dry-run",
"sync:link": "node scripts/link-skills.mjs",
"validate": "node scripts/validate-skills-config.mjs",
"test": "vitest run",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"jiti": "^2.7.0",
"minimatch": "^10.2.5",
"yaml": "^2.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"eslint": "^10.3.0",
"vitest": "^4.1.7"
}
}