forked from emekaorji/skillsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 805 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 805 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
35
36
37
38
39
40
41
42
43
44
{
"name": "enskill",
"version": "0.0.1",
"description": "CLI for building and publishing AI agent skills",
"keywords": [
"ai",
"skills.md",
"skills",
"openclaw",
"claude",
"openai",
"gemini",
"anthropic"
],
"license": "MIT",
"author": "Emeka Orji",
"type": "module",
"main": "dist/cli.js",
"bin": {
"enskill": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "pnpm run typecheck"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.10.10",
"tsup": "^8.2.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
]
}