ccski 2.2.1 → 2.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccski",
3
- "version": "2.2.1",
3
+ "version": "2.3.0",
4
4
  "description": "Claude Code Skills Manager - CLI and MCP interface for managing skills across AI agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,6 +15,21 @@
15
15
  "files": [
16
16
  "dist"
17
17
  ],
18
+ "scripts": {
19
+ "npm": "pnpm build && pnpm pub",
20
+ "pub": "pnpm publish --access publish --no-git-checks",
21
+ "build": "tsdown",
22
+ "ccski": "bun src/cli.ts",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:coverage": "vitest run --coverage",
26
+ "ts": "tsc --noEmit",
27
+ "lint": "echo 'Linting not configured yet'",
28
+ "fmt": "prettier --write .",
29
+ "docs:dev": "vitepress dev docs",
30
+ "docs:build": "vitepress build docs",
31
+ "docs:preview": "vitepress preview docs"
32
+ },
18
33
  "keywords": [
19
34
  "claude-code",
20
35
  "codex",
@@ -27,12 +42,12 @@
27
42
  "license": "MIT",
28
43
  "repository": {
29
44
  "type": "git",
30
- "url": "git+https://github.com/jixoai-labs/ccski.git"
45
+ "url": "git+https://github.com/jixoai/ccski.git"
31
46
  },
32
47
  "bugs": {
33
- "url": "https://github.com/jixoai-labs/ccski/issues"
48
+ "url": "https://github.com/jixoai/ccski/issues"
34
49
  },
35
- "homepage": "https://github.com/jixoai-labs/ccski#readme",
50
+ "homepage": "https://github.com/jixoai/ccski#readme",
36
51
  "dependencies": {
37
52
  "debug": "^4.3.7"
38
53
  },
@@ -63,20 +78,5 @@
63
78
  },
64
79
  "engines": {
65
80
  "node": ">=20.0.0"
66
- },
67
- "scripts": {
68
- "npm": "pnpm build && pnpm pub",
69
- "pub": "pnpm publish --access publish --no-git-checks",
70
- "build": "tsdown",
71
- "ccski": "bun src/cli.ts",
72
- "test": "vitest run",
73
- "test:watch": "vitest",
74
- "test:coverage": "vitest run --coverage",
75
- "ts": "tsc --noEmit",
76
- "lint": "echo 'Linting not configured yet'",
77
- "fmt": "prettier --write .",
78
- "docs:dev": "vitepress dev docs",
79
- "docs:build": "vitepress build docs",
80
- "docs:preview": "vitepress preview docs"
81
81
  }
82
- }
82
+ }
@@ -1,34 +0,0 @@
1
- import { createRequire } from "node:module";
2
-
3
- //#region rolldown:runtime
4
- var __create = Object.create;
5
- var __defProp = Object.defineProperty;
6
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
- var __getOwnPropNames = Object.getOwnPropertyNames;
8
- var __getProtoOf = Object.getPrototypeOf;
9
- var __hasOwnProp = Object.prototype.hasOwnProperty;
10
- var __commonJS = (cb, mod) => function() {
11
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
12
- };
13
- var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
16
- key = keys[i];
17
- if (!__hasOwnProp.call(to, key) && key !== except) {
18
- __defProp(to, key, {
19
- get: ((k) => from[k]).bind(null, key),
20
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
- });
22
- }
23
- }
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
28
- value: mod,
29
- enumerable: true
30
- }) : target, mod));
31
- var __require = /* @__PURE__ */ createRequire(import.meta.url);
32
-
33
- //#endregion
34
- export { __require as n, __toESM as r, __commonJS as t };