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

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 +8 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devp0nt/error0",
3
- "version": "1.0.0-next.21",
3
+ "version": "1.0.0-next.23",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Sergei Dmitriev",
@@ -32,7 +32,8 @@
32
32
  "LICENSE"
33
33
  ],
34
34
  "scripts": {
35
- "dev": "tsc-watch --preserveWatchOutput --project tsconfig.build.json --onSuccess 'bun run pack:dist'",
35
+ "dev": "tsc-watch --preserveWatchOutput --project tsconfig.build.json",
36
+ "dev:npm": "tsc-watch --preserveWatchOutput --project tsconfig.build.json --onSuccess 'bun run pack:dist'",
36
37
  "build": "tsup",
37
38
  "build:test:esm": "tsup --outDir dist-test/esm --tsconfig tsconfig.build.test.json --format esm src",
38
39
  "build:test:esm:watch": "bun run build:test:esm --watch",
@@ -68,13 +69,14 @@
68
69
  "types:dev": "tsc --noEmit",
69
70
  "types": "bun run types:dev",
70
71
  "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",
72
+ "pack:dist": "mkdir -p dist-npm && npm pack --pack-destination dist-npm --silent && cd dist-npm && tar -xzf *.tgz && cp -r package/* . && rm -rf package && rm *.tgz",
73
+ "pack:dist:hard": "rimraf dist-npm && bun run pack:dist",
72
74
  "prepare": "husky",
73
- "clean": "rimraf dist && rimraf dist-test && rimraf node_modules/.cache"
75
+ "clean": "rimraf dist && rimraf dist-test && rimraf dist-npm && rimraf node_modules/.cache"
74
76
  },
75
77
  "dependencies": {},
76
78
  "peerDependencies": {
77
- "@devp0nt/meta0": "^1.0.0-next.21",
79
+ "@devp0nt/meta0": "^1.0.0-next.23",
78
80
  "axios": "^1.12.2",
79
81
  "zod": "^4.1.9"
80
82
  },
@@ -92,6 +94,7 @@
92
94
  "eslint": "^9.36.0",
93
95
  "eslint-config-love": "^130.0.0",
94
96
  "eslint-config-prettier": "^10.1.8",
97
+ "eslint-plugin-no-only-tests": "^3.3.0",
95
98
  "husky": "^9.1.7",
96
99
  "lint-staged": "^16.2.1",
97
100
  "lodash": "^4.17.21",