@hasnatools/skills 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.
Files changed (2) hide show
  1. package/dist/index.js +21994 -0
  2. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@hasnatools/skills",
3
+ "version": "0.1.0",
4
+ "description": "CLI for skills.md - AI Agent Skills Marketplace",
5
+ "type": "module",
6
+ "bin": {
7
+ "skills": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "dev": "bun run src/index.ts",
11
+ "build": "bun build src/index.ts --outdir dist --target node --format esm",
12
+ "test": "bun test",
13
+ "lint": "eslint src",
14
+ "type-check": "tsc --noEmit"
15
+ },
16
+ "dependencies": {
17
+ "chalk": "^5.3.0",
18
+ "commander": "^12.1.0",
19
+ "conf": "^13.0.1",
20
+ "open": "^11.0.0",
21
+ "ora": "^8.1.1",
22
+ "prompts": "^2.4.2"
23
+ },
24
+ "devDependencies": {
25
+ "@types/node": "^20",
26
+ "@types/prompts": "^2.4.9",
27
+ "typescript": "^5"
28
+ },
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "publishConfig": {
33
+ "access": "restricted",
34
+ "registry": "https://registry.npmjs.org/"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/skillsmd/skills-md.git",
39
+ "directory": "apps/cli"
40
+ },
41
+ "keywords": [
42
+ "cli",
43
+ "skills",
44
+ "ai",
45
+ "claude",
46
+ "codex",
47
+ "agent"
48
+ ],
49
+ "author": "Hasna",
50
+ "license": "MIT"
51
+ }