@hasna/skills 0.1.67 → 0.1.69
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/bin/index.js +380 -19
- package/bin/mcp.js +8 -4
- package/bin/server.js +198 -193
- package/bin/worker.js +191 -190
- package/dist/admin-contract.d.ts +6189 -0
- package/dist/admin-contract.js +4451 -0
- package/dist/index.js +7 -3
- package/dist/sdk/index.js +573 -223
- package/dist/sdk/runs.d.ts +8 -8
- package/package.json +7 -3
package/dist/index.js
CHANGED
|
@@ -10342,7 +10342,7 @@ import { dirname as dirname8, relative as relative3 } from "path";
|
|
|
10342
10342
|
// package.json
|
|
10343
10343
|
var package_default = {
|
|
10344
10344
|
name: "@hasna/skills",
|
|
10345
|
-
version: "0.1.
|
|
10345
|
+
version: "0.1.69",
|
|
10346
10346
|
description: "Skills library for AI coding agents",
|
|
10347
10347
|
type: "module",
|
|
10348
10348
|
bin: {
|
|
@@ -10364,6 +10364,10 @@ var package_default = {
|
|
|
10364
10364
|
"./sdk": {
|
|
10365
10365
|
import: "./dist/sdk/index.js",
|
|
10366
10366
|
types: "./dist/sdk/index.d.ts"
|
|
10367
|
+
},
|
|
10368
|
+
"./admin-contract": {
|
|
10369
|
+
import: "./dist/admin-contract.js",
|
|
10370
|
+
types: "./dist/admin-contract.d.ts"
|
|
10367
10371
|
}
|
|
10368
10372
|
},
|
|
10369
10373
|
files: [
|
|
@@ -10382,8 +10386,8 @@ var package_default = {
|
|
|
10382
10386
|
types: "./dist/index.d.ts",
|
|
10383
10387
|
scripts: {
|
|
10384
10388
|
clean: "rm -rf bin/ dist/",
|
|
10385
|
-
build: "bun run clean && bun build ./src/cli/index.tsx --outdir ./bin --target bun && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/server/index.ts --outfile ./bin/server.js --target bun && bun build ./src/server/worker.ts --outfile ./bin/worker.js --target bun && bun build ./src/server/migrate.ts --outfile ./bin/migrate.js --target bun && bun build ./src/index.ts ./src/storage.ts ./src/sdk/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
10386
|
-
"build:js": "rm -rf dist && bun build ./src/index.ts ./src/storage.ts ./src/sdk/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
10389
|
+
build: "bun run clean && bun build ./src/cli/index.tsx --outdir ./bin --target bun && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/server/index.ts --outfile ./bin/server.js --target bun && bun build ./src/server/worker.ts --outfile ./bin/worker.js --target bun && bun build ./src/server/migrate.ts --outfile ./bin/migrate.js --target bun && bun build ./src/index.ts ./src/storage.ts ./src/sdk/index.ts ./src/admin-contract.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
10390
|
+
"build:js": "rm -rf dist && bun build ./src/index.ts ./src/storage.ts ./src/sdk/index.ts ./src/admin-contract.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
10387
10391
|
test: "bun test --timeout 30000",
|
|
10388
10392
|
dev: "bun run ./src/cli/index.tsx",
|
|
10389
10393
|
"dev:watch": "bun --watch run ./src/cli/index.tsx",
|