@semba-ryuichiro/webpify 1.0.0 → 1.0.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 (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +0 -0
  3. package/package.json +37 -42
package/README.md CHANGED
@@ -17,7 +17,7 @@
17
17
  ## インストール
18
18
 
19
19
  ```bash
20
- npm install -g webpify
20
+ pnpm add -g @semba-ryuichiro/webpify
21
21
  ```
22
22
 
23
23
  ## 使い方
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -7,39 +7,40 @@
7
7
  "url": "https://github.com/semba-yui/webpify/issues"
8
8
  },
9
9
  "dependencies": {
10
- "commander": "catalog:",
11
- "sharp": "catalog:"
10
+ "commander": "14.0.2",
11
+ "sharp": "0.34.5"
12
12
  },
13
13
  "description": "CLI tool to convert images to WebP format",
14
14
  "devDependencies": {
15
- "@biomejs/biome": "catalog:",
16
- "@commitlint/cli": "catalog:",
17
- "@commitlint/config-conventional": "catalog:",
18
- "@fast-check/vitest": "catalog:",
19
- "@secretlint/secretlint-rule-preset-recommend": "catalog:",
20
- "@stryker-mutator/core": "catalog:",
21
- "@stryker-mutator/typescript-checker": "catalog:",
22
- "@stryker-mutator/vitest-runner": "catalog:",
23
- "@types/node": "catalog:",
24
- "@vitest/coverage-v8": "catalog:",
25
- "dependency-cruiser": "catalog:",
26
- "fast-check": "catalog:",
27
- "lefthook": "catalog:",
28
- "remark": "catalog:",
29
- "remark-cli": "catalog:",
30
- "remark-frontmatter": "catalog:",
31
- "remark-gfm": "catalog:",
32
- "remark-lint": "catalog:",
33
- "remark-preset-lint-consistent": "catalog:",
34
- "remark-preset-lint-recommended": "catalog:",
35
- "remark-toc": "catalog:",
36
- "secretlint": "catalog:",
37
- "ts-node": "catalog:",
38
- "typedoc": "catalog:",
39
- "typedoc-plugin-merge-modules": "catalog:",
40
- "typedoc-theme-hierarchy": "catalog:",
41
- "typescript": "catalog:",
42
- "vitest": "catalog:"
15
+ "@biomejs/biome": "2.3.10",
16
+ "@commitlint/cli": "20.2.0",
17
+ "@commitlint/config-conventional": "20.2.0",
18
+ "@fast-check/vitest": "0.2.4",
19
+ "@secretlint/secretlint-rule-preset-recommend": "11.2.5",
20
+ "@stryker-mutator/core": "9.4.0",
21
+ "@stryker-mutator/typescript-checker": "9.4.0",
22
+ "@stryker-mutator/vitest-runner": "9.4.0",
23
+ "@types/node": "25.0.3",
24
+ "@vitest/coverage-v8": "4.0.16",
25
+ "dependency-cruiser": "17.3.5",
26
+ "fast-check": "4.5.3",
27
+ "lefthook": "2.0.13",
28
+ "remark": "15.0.1",
29
+ "remark-cli": "12.0.1",
30
+ "remark-frontmatter": "5.0.0",
31
+ "remark-gfm": "4.0.1",
32
+ "remark-lint": "10.0.1",
33
+ "remark-preset-lint-consistent": "6.0.1",
34
+ "remark-preset-lint-recommended": "7.0.1",
35
+ "remark-toc": "9.0.0",
36
+ "secretlint": "11.2.5",
37
+ "ts-node": "10.9.2",
38
+ "typedoc": "0.28.15",
39
+ "typedoc-plugin-merge-modules": "7.0.0",
40
+ "typedoc-theme-hierarchy": "6.0.0",
41
+ "typescript": "5.9.3",
42
+ "vitest": "4.0.16",
43
+ "node": "runtime:>=24.11.0"
43
44
  },
44
45
  "devEngines": {
45
46
  "runtime": {
@@ -49,11 +50,7 @@
49
50
  }
50
51
  },
51
52
  "engines": {
52
- "runtime": {
53
- "name": "node",
54
- "onFail": "download",
55
- "version": "^24.11.0"
56
- }
53
+ "node": ">=24.11.0"
57
54
  },
58
55
  "exports": {
59
56
  ".": {
@@ -81,7 +78,6 @@
81
78
  "license": "MIT",
82
79
  "main": "./dist/index.js",
83
80
  "name": "@semba-ryuichiro/webpify",
84
- "packageManager": "pnpm@10.26.2",
85
81
  "publishConfig": {
86
82
  "access": "public",
87
83
  "registry": "https://registry.npmjs.org/"
@@ -90,6 +86,9 @@
90
86
  "type": "git",
91
87
  "url": "git+https://github.com/semba-yui/webpify.git"
92
88
  },
89
+ "type": "module",
90
+ "types": "./dist/index.d.ts",
91
+ "version": "1.0.2",
93
92
  "scripts": {
94
93
  "build": "tsc",
95
94
  "deps": "dependency-cruiser src --config .dependency-cruiser.cjs",
@@ -101,15 +100,11 @@
101
100
  "lint:md": "remark . --quiet",
102
101
  "lint:md:fix": "remark . --quiet --output",
103
102
  "lint:secret": "secretlint \"**/*\"",
104
- "prepublishOnly": "pnpm run lint && pnpm run test && pnpm run build",
105
103
  "test": "vitest run",
106
104
  "test:coverage": "vitest run --coverage",
107
105
  "test:mutation": "stryker run",
108
106
  "test:mutation:dry": "stryker run --dryRunOnly",
109
107
  "test:watch": "vitest",
110
108
  "typecheck": "tsc --noEmit"
111
- },
112
- "type": "module",
113
- "types": "./dist/index.d.ts",
114
- "version": "1.0.0"
115
- }
109
+ }
110
+ }