@repdf/preview 0.0.1 → 0.0.3

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/dist/index.cjs CHANGED
@@ -29,10 +29,12 @@ var import_commander = require("commander");
29
29
  // package.json
30
30
  var package_default = {
31
31
  name: "@repdf/preview",
32
- version: "0.0.1",
32
+ version: "0.0.3",
33
33
  type: "module",
34
- private: false,
35
34
  main: "dist/index.js",
35
+ bin: {
36
+ repdf: "./dist/index.js"
37
+ },
36
38
  exports: {
37
39
  "./package.json": "./package.json",
38
40
  ".": {
@@ -54,7 +56,7 @@ var package_default = {
54
56
  start: "next start",
55
57
  "check-exports": "attw --pack .",
56
58
  format: "biome check --write .",
57
- "local-release": "changeset publish"
59
+ "local-release": "bun publish --access public"
58
60
  },
59
61
  dependencies: {
60
62
  "@react-email/render": "1.0.1",
package/dist/index.js CHANGED
@@ -6,10 +6,12 @@ import { program } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@repdf/preview",
9
- version: "0.0.1",
9
+ version: "0.0.3",
10
10
  type: "module",
11
- private: false,
12
11
  main: "dist/index.js",
12
+ bin: {
13
+ repdf: "./dist/index.js"
14
+ },
13
15
  exports: {
14
16
  "./package.json": "./package.json",
15
17
  ".": {
@@ -31,7 +33,7 @@ var package_default = {
31
33
  start: "next start",
32
34
  "check-exports": "attw --pack .",
33
35
  format: "biome check --write .",
34
- "local-release": "changeset publish"
36
+ "local-release": "bun publish --access public"
35
37
  },
36
38
  dependencies: {
37
39
  "@react-email/render": "1.0.1",
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@repdf/preview",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
+ "bin": {
7
+ "repdf": "./dist/index.js"
8
+ },
6
9
  "exports": {
7
10
  "./package.json": "./package.json",
8
11
  ".": {
@@ -11,21 +14,17 @@
11
14
  }
12
15
  },
13
16
  "description": "preview app for repdf. Not ready for production use.",
14
- "keywords": ["pdf", "typescript", "react"],
17
+ "keywords": [
18
+ "pdf",
19
+ "typescript",
20
+ "react"
21
+ ],
15
22
  "homepage": "https://repdf.dev",
16
23
  "author": "repdf labs",
17
- "files": ["dist"],
24
+ "files": [
25
+ "dist"
26
+ ],
18
27
  "license": "MIT",
19
- "scripts": {
20
- "tsup": "tsup --tsconfig tsconfig.build.json",
21
- "build": "next build",
22
- "dev": "next dev",
23
- "lint": "next lint",
24
- "start": "next start",
25
- "check-exports": "attw --pack .",
26
- "format": "biome check --write .",
27
- "local-release": "changeset publish"
28
- },
29
28
  "dependencies": {
30
29
  "@react-email/render": "1.0.1",
31
30
  "@react-email/tailwind": "0.1.0",
@@ -82,5 +81,14 @@
82
81
  "tailwindcss": "^3.4.13",
83
82
  "typescript": "^5.6.3"
84
83
  },
85
- "packageManager": "pnpm@9.7.1"
86
- }
84
+ "scripts": {
85
+ "tsup": "tsup --tsconfig tsconfig.build.json",
86
+ "build": "next build",
87
+ "dev": "next dev",
88
+ "lint": "next lint",
89
+ "start": "next start",
90
+ "check-exports": "attw --pack .",
91
+ "format": "biome check --write .",
92
+ "local-release": "bun publish --access public"
93
+ }
94
+ }