@tec-explorer/skillpot 0.4.1

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 ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@tec-explorer/skillpot",
3
+ "version": "0.4.1",
4
+ "description": "Cross-agent skill manager: install once, expose per coding agent (Claude Code / ZCode / Codex / OpenCode / Gemini CLI).",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/tec-explorer/skillpot.git"
8
+ },
9
+ "bugs": {
10
+ "url": "https://github.com/zhangmingyong/skillpot/issues"
11
+ },
12
+ "homepage": "https://github.com/zhangmingyong/skillpot#readme",
13
+ "bin": {
14
+ "skillpot": "dist/cli.mjs",
15
+ "spot": "dist/cli.mjs"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "CHANGELOG.md"
20
+ ],
21
+ "scripts": {
22
+ "build": "npm run typecheck && rm -rf dist && esbuild src/cli.ts --bundle --platform=node --format=esm --target=node18 --jsx=automatic --alias:react-devtools-core=./src/shims/react-devtools-core.ts --banner:js='#!/usr/bin/env node\nimport { createRequire } from \"node:module\";\nconst require = createRequire(import.meta.url);' --outfile=dist/cli.mjs --log-level=warning && chmod +x dist/cli.mjs",
23
+ "prepare": "npm run build",
24
+ "prepublishOnly": "npm run build && npm test",
25
+ "typecheck": "tsc --noEmit -p tsconfig.json",
26
+ "test": "vitest run",
27
+ "test:e2e": "npm run build && bash scripts/e2e-sandbox.sh",
28
+ "dev": "npm run typecheck -- --watch"
29
+ },
30
+ "engines": {
31
+ "node": ">=18"
32
+ },
33
+ "license": "MIT",
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "keywords": [
38
+ "skills",
39
+ "agent-skills",
40
+ "claude-code",
41
+ "codex",
42
+ "opencode",
43
+ "gemini-cli",
44
+ "zcode",
45
+ "cli"
46
+ ],
47
+ "dependencies": {
48
+ "commander": "^12.1.0",
49
+ "ink": "^5.2.0",
50
+ "picocolors": "^1.1.1",
51
+ "react": "^18.3.1",
52
+ "yaml": "^2.6.1"
53
+ },
54
+ "devDependencies": {
55
+ "@types/node": "^18.19.0",
56
+ "@types/react": "^18.3.12",
57
+ "esbuild": "^0.24.0",
58
+ "typescript": "^5.6.0",
59
+ "vitest": "^2.1.9"
60
+ }
61
+ }