@mherod/get-cookie 4.3.1 → 4.3.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.
File without changes
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@mherod/get-cookie",
3
- "version": "4.3.1",
3
+ "version": "4.3.2",
4
4
  "description": "Node.js module for querying cookies from Chrome, Firefox, and Safari browsers",
5
- "packageManager": "pnpm@9.15.2",
6
5
  "type": "module",
7
6
  "source": "src/index.ts",
8
7
  "bin": {
@@ -25,29 +24,6 @@
25
24
  "publishConfig": {
26
25
  "access": "public"
27
26
  },
28
- "scripts": {
29
- "clean": "rm -rf dist",
30
- "build:lib": "tsup --config tsup.lib.ts",
31
- "build:cli": "tsup --config tsup.cli.ts",
32
- "build": "pnpm run build:lib && pnpm run build:cli",
33
- "test": "jest",
34
- "type-check": "tsc --noEmit --skipLibCheck",
35
- "lint": "biome check --diagnostic-level=error .",
36
- "lint:fix": "biome check --write .",
37
- "lint:staged": "biome check --staged --write .",
38
- "format": "biome format --write .",
39
- "format:check": "biome check --diagnostic-level=error .",
40
- "validate": "pnpm run type-check && pnpm run lint && pnpm run test && pnpm run check-links && pnpm run format:check",
41
- "prepack": "pnpm run validate",
42
- "prepublishOnly": "pnpm run clean && pnpm run validate && pnpm run build",
43
- "dev": "tsc -w -p tsconfig.json & tsc-alias -w -p tsconfig.json",
44
- "read-github": "NODE_OPTIONS=\"-r tsconfig-paths/register\" tsx scripts/read-github-cookies.ts",
45
- "prepare": "husky install",
46
- "docs": "typedoc && ./scripts/fix-typedoc.sh && vitepress build docs",
47
- "docs:dev": "vitepress dev docs",
48
- "docs:preview": "vitepress preview docs",
49
- "check-links": "./scripts/check-vitepress-links.sh"
50
- },
51
27
  "engines": {
52
28
  "node": "^20.0.0 || ^22.0.0 || ^24.0.0"
53
29
  },
@@ -67,6 +43,9 @@
67
43
  "tsconfig-paths": "^4.2.0",
68
44
  "zod": "^3.24.1"
69
45
  },
46
+ "optionalDependencies": {
47
+ "@primno/dpapi": "^2.0.1"
48
+ },
70
49
  "devDependencies": {
71
50
  "@biomejs/biome": "1.9.4",
72
51
  "@commitlint/cli": "19.8.1",
@@ -114,5 +93,25 @@
114
93
  "biome format --write --no-errors-on-unmatched",
115
94
  "./scripts/check-vitepress-links.sh"
116
95
  ]
96
+ },
97
+ "scripts": {
98
+ "clean": "rm -rf dist",
99
+ "build:lib": "tsup --config tsup.lib.ts",
100
+ "build:cli": "tsup --config tsup.cli.ts",
101
+ "build": "pnpm run build:lib && pnpm run build:cli",
102
+ "test": "jest",
103
+ "type-check": "tsc --noEmit --skipLibCheck",
104
+ "lint": "biome check --diagnostic-level=error .",
105
+ "lint:fix": "biome check --write .",
106
+ "lint:staged": "biome check --staged --write .",
107
+ "format": "biome format --write .",
108
+ "format:check": "biome check --diagnostic-level=error .",
109
+ "validate": "pnpm run type-check && pnpm run lint && pnpm run test && pnpm run check-links && pnpm run format:check",
110
+ "dev": "tsc -w -p tsconfig.json & tsc-alias -w -p tsconfig.json",
111
+ "read-github": "NODE_OPTIONS=\"-r tsconfig-paths/register\" tsx scripts/read-github-cookies.ts",
112
+ "docs": "typedoc && ./scripts/fix-typedoc.sh && vitepress build docs",
113
+ "docs:dev": "vitepress dev docs",
114
+ "docs:preview": "vitepress preview docs",
115
+ "check-links": "./scripts/check-vitepress-links.sh"
117
116
  }
118
- }
117
+ }