@teever/ez-hook-effect 0.5.1 → 0.5.19

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/package.json CHANGED
@@ -1,58 +1,58 @@
1
1
  {
2
- "name": "@teever/ez-hook-effect",
3
- "version": "0.5.1",
4
- "description": "A Discord webhook library built with Effect - type-safe, composable, and resilient",
5
- "module": "src/index.ts",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "type": "module",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js"
13
- }
14
- },
15
- "sideEffects": false,
16
- "files": [
17
- "dist",
18
- "README.md",
19
- "LICENSE"
20
- ],
21
- "author": "github.com/teeverc",
22
- "license": "MIT",
23
- "scripts": {
24
- "dev": "bun src/index.ts",
25
- "lint": "bun biome check ./src ./examples ./tests --write --unsafe",
26
- "jsr": "bunx jsr publish --allow-slow-types --allow-dirty",
27
- "build": "bun run clean && bun run build:tsc && bun run build:bundle",
28
- "build:tsc": "tsc --project tsconfig.build.json",
29
- "build:bundle": "bun build ./src/index.ts --outdir ./dist --target node --format esm --sourcemap --external effect",
30
- "build:standalone": "bun build ./src/index.ts --compile --outfile ez-hook-effect",
31
- "clean": "rm -rf dist ez-hook-effect",
32
- "prepublishOnly": "bun run build",
33
- "test": "bun test",
34
- "test:watch": "bun test --watch",
35
- "test:coverage": "bun test --coverage",
36
- "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.examples.json",
37
- "typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
38
- "example": "bun run examples/05-complete-showcase.ts",
39
- "example:simple": "bun run examples/02-simple-demo.ts",
40
- "example:working": "bun run examples/04-comprehensive-demo.ts",
41
- "example:pipe": "bun run examples/03-pipe-style.ts",
42
- "sync:effect": "bun run ./scripts/update-effect-version.ts"
43
- },
44
- "devDependencies": {
45
- "@biomejs/biome": "^2.3.13",
46
- "@types/bun": "^1.3.8",
47
- "effect": "^4.0.0-beta.9",
48
- "typescript": "^5.9.3"
49
- },
50
- "peerDependencies": {
51
- "effect": ">=4.0.0-beta.9 <5"
52
- },
53
- "peerDependenciesMeta": {
54
- "effect": {
55
- "optional": false
56
- }
57
- }
2
+ "name": "@teever/ez-hook-effect",
3
+ "version": "0.5.19",
4
+ "description": "A Discord webhook library built with Effect - type-safe, composable, and resilient",
5
+ "module": "src/index.ts",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ }
14
+ },
15
+ "sideEffects": false,
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "author": "github.com/teeverc",
22
+ "license": "MIT",
23
+ "scripts": {
24
+ "dev": "bun src/index.ts",
25
+ "lint": "bun biome check ./src ./examples ./tests --write --unsafe",
26
+ "jsr": "bunx jsr publish --allow-slow-types --allow-dirty",
27
+ "build": "bun run clean && bun run build:tsc && bun run build:bundle",
28
+ "build:tsc": "tsc --project tsconfig.build.json",
29
+ "build:bundle": "bun build ./src/index.ts --outdir ./dist --target node --format esm --sourcemap --external effect",
30
+ "build:standalone": "bun build ./src/index.ts --compile --outfile ez-hook-effect",
31
+ "clean": "rm -rf dist ez-hook-effect",
32
+ "prepublishOnly": "bun run build",
33
+ "test": "bun test",
34
+ "test:watch": "bun test --watch",
35
+ "test:coverage": "bun test --coverage",
36
+ "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.examples.json",
37
+ "typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
38
+ "example": "bun run examples/05-complete-showcase.ts",
39
+ "example:simple": "bun run examples/02-simple-demo.ts",
40
+ "example:working": "bun run examples/04-comprehensive-demo.ts",
41
+ "example:pipe": "bun run examples/03-pipe-style.ts",
42
+ "sync:effect": "bun run ./scripts/update-effect-version.ts"
43
+ },
44
+ "devDependencies": {
45
+ "@biomejs/biome": "^2.3.13",
46
+ "@types/bun": "^1.3.8",
47
+ "effect": "4.0.0-beta.45",
48
+ "typescript": "^5.9.3"
49
+ },
50
+ "peerDependencies": {
51
+ "effect": ">=4.0.0-beta.45 <5"
52
+ },
53
+ "peerDependenciesMeta": {
54
+ "effect": {
55
+ "optional": false
56
+ }
57
+ }
58
58
  }