chops-sh 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 +14 -0
- package/dist/index.js +11422 -0
- package/package.json +30 -0
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "chops-sh",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Find and install agent skills from the chops registry",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"chops": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/index.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=18"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"lint": "eslint src",
|
|
19
|
+
"test": "bun test src",
|
|
20
|
+
"test:e2e": "bun test e2e",
|
|
21
|
+
"build": "bun build src/index.ts --target=node --outfile dist/index.js && bun build --compile src/index.ts --outfile dist/chops",
|
|
22
|
+
"prepack": "bun run build"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@chops/core": "workspace:*",
|
|
26
|
+
"@chops/crawler": "workspace:*",
|
|
27
|
+
"@chops/db": "workspace:*",
|
|
28
|
+
"drizzle-orm": "^0.45.2"
|
|
29
|
+
}
|
|
30
|
+
}
|