@kitschpatrol/snip 0.0.11 → 0.0.12

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.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-2025 Eric Mika
3
+ Copyright (c) 2023-2026 Eric Mika
4
4
 
5
5
  Based on the MIT-licensed "Snipster" project by Jared Hanstra
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/snip",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "A CLI tool for snippet management.",
5
5
  "keywords": [
6
6
  "cli",
@@ -26,6 +26,7 @@
26
26
  "url": "https://github.com/jhanstra"
27
27
  }
28
28
  ],
29
+ "sideEffects": false,
29
30
  "type": "module",
30
31
  "bin": {
31
32
  "snip": "./dist/cli.js"
@@ -37,42 +38,47 @@
37
38
  "@commander-js/extra-typings": "^14.0.0",
38
39
  "@types/fs-extra": "^11.0.4",
39
40
  "@types/ignore-walk": "^4.0.3",
40
- "@types/inquirer": "^9.0.9",
41
- "commander": "^14.0.2",
41
+ "commander": "^14.0.3",
42
+ "date-fns": "^4.1.0",
42
43
  "execa": "^9.6.1",
43
- "fs-extra": "^11.3.2",
44
+ "fs-extra": "^11.3.4",
44
45
  "ignore-walk": "^8.0.0",
45
- "inquirer": "^12.11.1"
46
+ "inquirer": "^13.3.2",
47
+ "lognow": "^0.6.1",
48
+ "untildify": "^6.0.0",
49
+ "zod": "^4.3.6"
46
50
  },
47
51
  "devDependencies": {
48
- "@kitschpatrol/shared-config": "^5.10.0",
49
- "@types/node": "^20.19.25",
50
- "bumpp": "^10.3.2",
51
- "date-fns": "^4.1.0",
52
- "mdat-plugin-cli-help": "^1.0.4",
53
- "picocolors": "^1.1.1",
54
- "pkgroll": "^2.21.4",
55
- "tslog": "^4.10.2",
52
+ "@kitschpatrol/shared-config": "^7.1.0",
53
+ "@types/node": "^20.19.39",
54
+ "bumpp": "^11.0.1",
55
+ "mdat-plugin-cli-help": "^2.0.2",
56
+ "publint": "^0.3.18",
57
+ "tsdown": "^0.21.7",
56
58
  "tsx": "^4.21.0",
57
59
  "typescript": "~5.9.3",
58
- "untildify": "^6.0.0",
59
- "vitest": "^4.0.15",
60
- "zod": "^3.25.76"
60
+ "vitest": "^4.1.2"
61
61
  },
62
62
  "engines": {
63
- "node": ">=20.9.0"
63
+ "node": ">=20.17.0"
64
+ },
65
+ "devEngines": {
66
+ "runtime": {
67
+ "name": "node",
68
+ "version": ">=22.18.0"
69
+ }
64
70
  },
65
71
  "publishConfig": {
66
72
  "access": "public"
67
73
  },
68
74
  "scripts": {
69
- "build": "pkgroll --clean-dist",
75
+ "build": "tsdown",
70
76
  "clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
71
- "fix": "kpi fix",
72
- "lint": "kpi lint",
77
+ "fix": "ksc fix",
78
+ "lint": "ksc lint",
73
79
  "release": "bumpp --commit 'Release: %s' && pnpm run build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') && pnpm publish",
74
80
  "start": "node ./dist/cli.js",
75
- "test": "vitest",
81
+ "test": "vitest run",
76
82
  "update-language-data": "tsx ./scripts/update-vscode-language-data.ts"
77
83
  }
78
84
  }
package/readme.md CHANGED
@@ -1,5 +1,3 @@
1
- <!--+ Warning: Content inside HTML comment blocks was generated by mdat and may be overwritten. +-->
2
-
3
1
  <!-- title -->
4
2
 
5
3
  # @kitschpatrol/snip
@@ -10,6 +8,7 @@
10
8
 
11
9
  [![NPM Package @kitschpatrol/snip](https://img.shields.io/npm/v/@kitschpatrol/snip.svg)](https://npmjs.com/package/@kitschpatrol/snip)
12
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
+ [![CI](https://github.com/kitschpatrol/snip/actions/workflows/ci.yml/badge.svg)](https://github.com/kitschpatrol/snip/actions/workflows/ci.yml)
13
12
 
14
13
  <!-- /badges -->
15
14