@hasna/skills 0.1.44 → 0.1.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/skills",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
4
4
  "description": "Skills library for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,6 +11,10 @@
11
11
  ".": {
12
12
  "import": "./dist/index.js",
13
13
  "types": "./dist/index.d.ts"
14
+ },
15
+ "./storage": {
16
+ "import": "./dist/storage.js",
17
+ "types": "./dist/storage.d.ts"
14
18
  }
15
19
  },
16
20
  "files": [
@@ -31,7 +35,7 @@
31
35
  "types": "./dist/index.d.ts",
32
36
  "scripts": {
33
37
  "clean": "rm -rf bin/ dist/",
34
- "build": "bun run clean && bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
38
+ "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/index.ts ./src/storage.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
35
39
  "test": "bun test",
36
40
  "dev": "bun run ./src/cli/index.tsx",
37
41
  "dev:watch": "bun --watch run ./src/cli/index.tsx",
@@ -61,9 +65,11 @@
61
65
  "devDependencies": {
62
66
  "@types/bun": "latest",
63
67
  "@types/react": "^18.2.0",
68
+ "react-devtools-core": "^7.0.1",
64
69
  "typescript": "^5"
65
70
  },
66
71
  "dependencies": {
72
+ "@hasna/events": "^0.1.3",
67
73
  "@modelcontextprotocol/sdk": "^1.26.0",
68
74
  "chalk": "^5.3.0",
69
75
  "commander": "^12.1.0",