skillwiki 0.2.0-beta.1 → 0.2.0-beta.2

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/cli.js +1 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -1238,7 +1238,7 @@ async function runLint(input) {
1238
1238
 
1239
1239
  // src/cli.ts
1240
1240
  var program = new Command();
1241
- program.name("skillwiki").description("Deterministic helpers for CodeWiki skills").version("0.1.0");
1241
+ program.name("skillwiki").description("Deterministic helpers for CodeWiki skills").version("0.2.0-beta.2");
1242
1242
  program.option("--human", "render terminal-readable output instead of JSON");
1243
1243
  function emit(r) {
1244
1244
  if (program.opts().human) printHuman(r.result);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillwiki",
3
- "version": "0.2.0-beta.1",
3
+ "version": "0.2.0-beta.2",
4
4
  "type": "module",
5
5
  "bin": { "skillwiki": "dist/cli.js" },
6
6
  "files": ["dist", "templates", "README.md"],
@@ -11,12 +11,12 @@
11
11
  "typecheck": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@skillwiki/shared": "*",
15
14
  "commander": "^12.1.0",
16
15
  "js-yaml": "^4.1.0",
17
16
  "zod": "^3.23.0"
18
17
  },
19
18
  "devDependencies": {
19
+ "@skillwiki/shared": "*",
20
20
  "@types/js-yaml": "^4.0.9",
21
21
  "@types/node": "^20.12.0",
22
22
  "tsup": "^8.3.0",