-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
{
"name": "agent-skillforge",
"version": "0.3.2",
"description": "Creator tooling for agent skills and plugins.",
"type": "module",
"bin": {
"agent-skillforge": "dist/cli.js",
"codex-skillforge": "dist/cli.js",
"skillforge": "dist/cli.js",
"asf": "dist/cli.js",
"csf": "dist/cli.js"
},
"files": [
"dist",
"examples",
"templates",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"lint:fixtures": "tsx src/cli.ts lint tests/fixtures/valid-skill",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f0d010c/skillforge.git"
},
"bugs": {
"url": "https://github.com/f0d010c/skillforge/issues"
},
"homepage": "https://github.com/f0d010c/skillforge#readme",
"dependencies": {
"archiver": "^8.0.0",
"commander": "^14.0.3",
"fs-extra": "^11.2.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.19.19",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=20"
},
"keywords": [
"agent-skills",
"codex",
"claude-code",
"openai",
"skills",
"plugins",
"cli"
],
"license": "MIT"
}