@opexa/portal-sdk 0.59.18 → 0.59.20

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@opexa/portal-sdk",
3
3
  "type": "module",
4
- "version": "0.59.18",
4
+ "version": "0.59.20",
5
5
  "main": "./dist/index.cjs",
6
6
  "files": [
7
7
  "dist",
@@ -11,14 +11,6 @@
11
11
  "publishConfig": {
12
12
  "access": "public"
13
13
  },
14
- "scripts": {
15
- "test": "vitest",
16
- "build": "tsup",
17
- "release": "release-it",
18
- "lint": "biome lint . --error-on-warnings",
19
- "prepack": "clean-package",
20
- "postpack": "clean-package restore"
21
- },
22
14
  "dependencies": {
23
15
  "@opexa/object-id": "^0.1.6",
24
16
  "@thumbmarkjs/thumbmarkjs": "^1.7.4",
@@ -50,12 +42,18 @@
50
42
  "github": {
51
43
  "release": false
52
44
  },
45
+ "npm": {
46
+ "publish": false
47
+ },
53
48
  "hooks": {
54
49
  "before:init": [
55
50
  "pnpm test"
56
51
  ],
57
52
  "after:bump": [
58
53
  "pnpm build"
54
+ ],
55
+ "after:git:release": [
56
+ "pnpm publish --access public --no-git-checks"
59
57
  ]
60
58
  }
61
59
  },
@@ -89,5 +87,11 @@
89
87
  "require": "./dist/index.cjs"
90
88
  },
91
89
  "./package.json": "./package.json"
90
+ },
91
+ "scripts": {
92
+ "test": "vitest",
93
+ "build": "tsup",
94
+ "release": "release-it",
95
+ "lint": "biome lint . --error-on-warnings"
92
96
  }
93
- }
97
+ }