@elisym/husk 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9980 -0
- package/dist/index.js.map +1 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elisym/husk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "HUSK CLI - serve a folder of agent skills over HTTP with one Bun process. Scaffold, list, call, and containerize skills.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent-skills",
|
|
7
|
+
"bun",
|
|
8
|
+
"cli",
|
|
9
|
+
"elisymlabs",
|
|
10
|
+
"http",
|
|
11
|
+
"husk",
|
|
12
|
+
"skills"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/elisymlabs/husk",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/elisymlabs/husk/issues"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "elisym labs",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/elisymlabs/husk.git",
|
|
23
|
+
"directory": "packages/cli"
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"husk": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"type": "module",
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"clean": "rm -rf dist",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"lint": "oxlint src/",
|
|
43
|
+
"qa": "tsup && vitest run && tsc --noEmit && oxlint src/ && oxfmt --check src/",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"typecheck": "tsc --noEmit"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"chalk": "~5.6.0",
|
|
49
|
+
"commander": "~13.1.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@elisym/husk-core": "0.1.0",
|
|
53
|
+
"@types/bun": "~1.3.0",
|
|
54
|
+
"@types/node": "~22.0.0",
|
|
55
|
+
"tsup": "~8.4.0",
|
|
56
|
+
"typescript": "~5.7.0",
|
|
57
|
+
"vitest": "~3.0.0"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"bun": ">=1.1"
|
|
61
|
+
}
|
|
62
|
+
}
|