@snipl/cli 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/dist/src/index.js +1 -1
  2. package/package.json +27 -3
package/dist/src/index.js CHANGED
@@ -148,7 +148,7 @@ cli.command('status', 'Check installed items').action((options) => {
148
148
  });
149
149
  });
150
150
  cli.help();
151
- cli.version('1.0.0');
151
+ cli.version('1.0.1');
152
152
  function handleError(err, json) {
153
153
  const message = err instanceof Error ? err.message : String(err);
154
154
  if (json) {
package/package.json CHANGED
@@ -1,9 +1,32 @@
1
1
  {
2
2
  "name": "@snipl/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "MIT",
7
+ "description": "Install verified TypeScript utility snippets into any project — sleep, retry, debounce, throttle, memoize, deep-clone, clamp, slugify. Zero-dependency source modules with integrity verification.",
8
+ "keywords": [
9
+ "snippet",
10
+ "snippets",
11
+ "typescript",
12
+ "utility",
13
+ "utilities",
14
+ "cli",
15
+ "sleep",
16
+ "retry",
17
+ "debounce",
18
+ "throttle",
19
+ "memoize",
20
+ "deep-clone",
21
+ "clamp",
22
+ "slugify",
23
+ "developer-tools",
24
+ "productivity",
25
+ "source-code",
26
+ "code-snippets",
27
+ "typescript-utilities",
28
+ "zero-dependency"
29
+ ],
7
30
  "repository": {
8
31
  "type": "git",
9
32
  "url": "git+https://github.com/ysr-hameed/snipl.git"
@@ -11,6 +34,7 @@
11
34
  "bugs": {
12
35
  "url": "https://github.com/ysr-hameed/snipl/issues"
13
36
  },
37
+ "homepage": "https://github.com/ysr-hameed/snipl#readme",
14
38
  "bin": {
15
39
  "snipl": "./dist/src/index.js"
16
40
  },
@@ -20,8 +44,8 @@
20
44
  ],
21
45
  "dependencies": {
22
46
  "cac": "^7.0.0",
23
- "@snipl/core": "1.0.0",
24
- "@snipl/registry-schema": "1.0.0"
47
+ "@snipl/core": "1.0.1",
48
+ "@snipl/registry-schema": "1.0.1"
25
49
  },
26
50
  "devDependencies": {
27
51
  "@types/node": "^22.20.1",