@serkonda7/ts-result 1.0.4 → 1.0.6

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/README.md +5 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -6,6 +6,11 @@
6
6
  Minimalistic Result type for TypeScript.
7
7
 
8
8
 
9
+ ## ⚠️ Archived
10
+ This project is archived.
11
+ I recommend using [better-result](https://github.com/dmmulroy/better-result) instead.
12
+
13
+
9
14
  ## 📦 Installation
10
15
  ```sh
11
16
  npm install @serkonda7/ts-result
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@serkonda7/ts-result",
3
3
  "description": "Minimalistic Result type for TypeScript.",
4
- "version": "1.0.4",
4
+ "version": "1.0.6",
5
5
  "license": "MIT",
6
6
  "author": "serkonda7",
7
7
  "homepage": "https://github.com/serkonda7/ts-result",
@@ -20,20 +20,20 @@
20
20
  "scripts": {
21
21
  "lint": "biome check --write",
22
22
  "lint:ci": "biome ci",
23
- "check": "tsgo -p tsconfig.check.json",
23
+ "check": "tsgo",
24
24
  "test": "bun test",
25
- "build": "tsgo && bun run scripts/build.ts",
25
+ "build": "tsgo -p tsconfig.build.json && bun run scripts/build.ts",
26
26
  "prepack": "bun run build",
27
27
  "pack": "bun pm pack --filename ts-result.tgz"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=22"
31
31
  },
32
- "packageManager": "bun@1.3.11",
32
+ "packageManager": "bun@1.3.13",
33
33
  "dependencies": {},
34
34
  "devDependencies": {
35
- "@biomejs/biome": "2.4.11",
36
- "@types/bun": "~1.3.11",
37
- "@typescript/native-preview": "~7.0.0-dev.20260411.1"
35
+ "@biomejs/biome": "2.4.15",
36
+ "@types/bun": "~1.3.13",
37
+ "@typescript/native-preview": "~7.0.0-dev.20260511.1"
38
38
  }
39
39
  }