@semba-ryuichiro/webpify 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 (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +0 -0
  3. package/package.json +37 -37
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,41 @@
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
+ "node": "runtime:^24.11.0"
12
13
  },
13
14
  "description": "CLI tool to convert images to WebP format",
14
15
  "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:"
16
+ "@biomejs/biome": "2.3.10",
17
+ "@commitlint/cli": "20.2.0",
18
+ "@commitlint/config-conventional": "20.2.0",
19
+ "@fast-check/vitest": "0.2.4",
20
+ "@secretlint/secretlint-rule-preset-recommend": "11.2.5",
21
+ "@stryker-mutator/core": "9.4.0",
22
+ "@stryker-mutator/typescript-checker": "9.4.0",
23
+ "@stryker-mutator/vitest-runner": "9.4.0",
24
+ "@types/node": "25.0.3",
25
+ "@vitest/coverage-v8": "4.0.16",
26
+ "dependency-cruiser": "17.3.5",
27
+ "fast-check": "4.5.3",
28
+ "lefthook": "2.0.13",
29
+ "remark": "15.0.1",
30
+ "remark-cli": "12.0.1",
31
+ "remark-frontmatter": "5.0.0",
32
+ "remark-gfm": "4.0.1",
33
+ "remark-lint": "10.0.1",
34
+ "remark-preset-lint-consistent": "6.0.1",
35
+ "remark-preset-lint-recommended": "7.0.1",
36
+ "remark-toc": "9.0.0",
37
+ "secretlint": "11.2.5",
38
+ "ts-node": "10.9.2",
39
+ "typedoc": "0.28.15",
40
+ "typedoc-plugin-merge-modules": "7.0.0",
41
+ "typedoc-theme-hierarchy": "6.0.0",
42
+ "typescript": "5.9.3",
43
+ "vitest": "4.0.16",
44
+ "node": "runtime:>=24.11.0"
43
45
  },
44
46
  "devEngines": {
45
47
  "runtime": {
@@ -81,7 +83,6 @@
81
83
  "license": "MIT",
82
84
  "main": "./dist/index.js",
83
85
  "name": "@semba-ryuichiro/webpify",
84
- "packageManager": "pnpm@10.26.2",
85
86
  "publishConfig": {
86
87
  "access": "public",
87
88
  "registry": "https://registry.npmjs.org/"
@@ -90,6 +91,9 @@
90
91
  "type": "git",
91
92
  "url": "git+https://github.com/semba-yui/webpify.git"
92
93
  },
94
+ "type": "module",
95
+ "types": "./dist/index.d.ts",
96
+ "version": "1.0.1",
93
97
  "scripts": {
94
98
  "build": "tsc",
95
99
  "deps": "dependency-cruiser src --config .dependency-cruiser.cjs",
@@ -101,15 +105,11 @@
101
105
  "lint:md": "remark . --quiet",
102
106
  "lint:md:fix": "remark . --quiet --output",
103
107
  "lint:secret": "secretlint \"**/*\"",
104
- "prepublishOnly": "pnpm run lint && pnpm run test && pnpm run build",
105
108
  "test": "vitest run",
106
109
  "test:coverage": "vitest run --coverage",
107
110
  "test:mutation": "stryker run",
108
111
  "test:mutation:dry": "stryker run --dryRunOnly",
109
112
  "test:watch": "vitest",
110
113
  "typecheck": "tsc --noEmit"
111
- },
112
- "type": "module",
113
- "types": "./dist/index.d.ts",
114
- "version": "1.0.0"
115
- }
114
+ }
115
+ }