@openskillmd/osm 0.2.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/LICENSE +21 -0
- package/README.md +76 -0
- package/dist/index.js +1373 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openskillmd/osm",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "The OpenSkill CLI (osm) — search, add, score, and explore AI agent skills from your terminal",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openskillmd": "./dist/index.js",
|
|
8
|
+
"openskill": "./dist/index.js",
|
|
9
|
+
"osm": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup",
|
|
16
|
+
"dev": "tsx src/index.ts",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"lint": "biome check .",
|
|
19
|
+
"lint:fix": "biome check --write .",
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"prepublishOnly": "pnpm run build",
|
|
22
|
+
"publish:beta": "node scripts/publish-beta.mjs",
|
|
23
|
+
"publish:beta:dry": "node scripts/publish-beta.mjs --dry-run"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"openskill",
|
|
27
|
+
"ai",
|
|
28
|
+
"skills",
|
|
29
|
+
"agents",
|
|
30
|
+
"cli",
|
|
31
|
+
"skill.md",
|
|
32
|
+
"blueprint"
|
|
33
|
+
],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"homepage": "https://openskill.md",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/openskillmd/cli.git"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/openskillmd/cli/issues"
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=20"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public",
|
|
48
|
+
"registry": "https://registry.npmjs.org/"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"boxen": "^8.0.1",
|
|
52
|
+
"chalk": "^5.4.1",
|
|
53
|
+
"commander": "^13.1.0",
|
|
54
|
+
"inquirer": "^12.6.0",
|
|
55
|
+
"open": "^10.2.0",
|
|
56
|
+
"ora": "^8.2.0",
|
|
57
|
+
"skills": "^1.4.6"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@biomejs/biome": "^2.0.0",
|
|
61
|
+
"@types/node": "^22.0.0",
|
|
62
|
+
"tsup": "^8.5.0",
|
|
63
|
+
"tsx": "^4.21.0",
|
|
64
|
+
"typescript": "^5.8.0",
|
|
65
|
+
"vitest": "^3.0.0"
|
|
66
|
+
}
|
|
67
|
+
}
|