-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.15 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@hasna/skills",
"version": "0.1.62",
"description": "Skills library for AI coding agents",
"type": "module",
"bin": {
"skills": "bin/index.js",
"skills-mcp": "bin/mcp.js",
"skills-server": "bin/server.js",
"skills-worker": "bin/worker.js",
"skills-migrate": "bin/migrate.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./storage": {
"import": "./dist/storage.js",
"types": "./dist/storage.d.ts"
}
},
"files": [
"dist/",
"!dist/**/*.test.d.ts",
"!dist/test-preload.d.ts",
"!dist/platform",
"!dist/server",
"bin/",
"migrations/",
"docs/skill-standard.md",
"skills/",
"!skills/**/node_modules",
"agent-skills/",
"LICENSE",
"README.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf bin/ dist/",
"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 --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "bun test --timeout 30000",
"dev": "bun run ./src/cli/index.tsx",
"dev:watch": "bun --watch run ./src/cli/index.tsx",
"dev:mcp": "bun --watch run ./src/mcp/index.ts",
"dev:server": "bun --watch run ./src/server/index.ts",
"dev:worker": "bun --watch run ./src/server/worker.ts",
"migrate": "bun run ./src/server/migrate.ts",
"typecheck": "tsc --noEmit",
"verify:release": "bun run scripts/release-guard.ts",
"prepack": "bun run build && bun run verify:release",
"prepublishOnly": "bun run typecheck && bun run test",
"postinstall": "mkdir -p $HOME/.hasna/skills/custom 2>/dev/null || true"
},
"keywords": [
"skills",
"ai",
"agent",
"cli",
"typescript",
"bun",
"claude",
"codex",
"gemini",
"mcp",
"model-context-protocol",
"open-source",
"skills-library",
"automation"
],
"author": "Hasna",
"license": "Apache-2.0",
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.2.0",
"react-devtools-core": "^7.0.1",
"typescript": "^5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1079.0",
"@hasna/events": "^0.1.7",
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.2.0",
"zod": "^4.3.6"
},
"engines": {
"bun": ">=1.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasna/skills.git"
},
"homepage": "https://github.com/hasna/skills",
"bugs": {
"url": "https://github.com/hasna/skills/issues"
}
}