@devp0nt/error0 1.0.0-next.20 → 1.0.0-next.21

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 (1) hide show
  1. package/package.json +6 -4
package/package.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "@devp0nt/error0",
3
+ "version": "1.0.0-next.21",
3
4
  "license": "MIT",
4
5
  "author": {
5
6
  "name": "Sergei Dmitriev",
@@ -31,7 +32,7 @@
31
32
  "LICENSE"
32
33
  ],
33
34
  "scripts": {
34
- "dev": "tsc --watch --preserveWatchOutput --project tsconfig.build.json",
35
+ "dev": "tsc-watch --preserveWatchOutput --project tsconfig.build.json --onSuccess 'bun run pack:dist'",
35
36
  "build": "tsup",
36
37
  "build:test:esm": "tsup --outDir dist-test/esm --tsconfig tsconfig.build.test.json --format esm src",
37
38
  "build:test:esm:watch": "bun run build:test:esm --watch",
@@ -67,12 +68,13 @@
67
68
  "types:dev": "tsc --noEmit",
68
69
  "types": "bun run types:dev",
69
70
  "pack:dry": "npm pack --dry-run",
71
+ "pack:dist": "rimraf dist-npm && mkdir -p dist-npm && npm pack --pack-destination dist-npm --silent && cd dist-npm && tar -xzf *.tgz && mv package/* . && rmdir package && rm *.tgz",
70
72
  "prepare": "husky",
71
73
  "clean": "rimraf dist && rimraf dist-test && rimraf node_modules/.cache"
72
74
  },
73
75
  "dependencies": {},
74
76
  "peerDependencies": {
75
- "@devp0nt/meta0": "^1.0.0-next.20",
77
+ "@devp0nt/meta0": "^1.0.0-next.21",
76
78
  "axios": "^1.12.2",
77
79
  "zod": "^4.1.9"
78
80
  },
@@ -96,6 +98,7 @@
96
98
  "prettier": "^3.6.2",
97
99
  "rimraf": "^6.0.1",
98
100
  "semantic-release": "^24.2.8",
101
+ "tsc-watch": "^7.1.1",
99
102
  "tsup": "^8.0.0",
100
103
  "typescript": "^5.0.0"
101
104
  },
@@ -105,6 +108,5 @@
105
108
  },
106
109
  "publishConfig": {
107
110
  "access": "public"
108
- },
109
- "version": "1.0.0-next.20"
111
+ }
110
112
  }