@exodus/zod 3.24.1-rc.6 → 3.24.2
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 +12 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/zod",
|
|
3
|
-
"version": "3.24.
|
|
3
|
+
"version": "3.24.2",
|
|
4
4
|
"author": "Exodus Movement, Inc.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,12 +43,17 @@
|
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
44
|
"tsx": "^3.8.0",
|
|
45
45
|
"typescript": "^5.0.0",
|
|
46
|
-
"vitest": "^0.32.2"
|
|
46
|
+
"vitest": "^0.32.2",
|
|
47
|
+
"semantic-release": "^21.1.1",
|
|
48
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
49
|
+
"@semantic-release/github": "^9.2.3",
|
|
50
|
+
"conventional-changelog-conventionalcommits": "^6.0.0"
|
|
47
51
|
},
|
|
48
52
|
"exports": {
|
|
49
53
|
".": {
|
|
50
54
|
"types": "./index.d.ts",
|
|
51
|
-
"import": "./lib/index.mjs"
|
|
55
|
+
"import": "./lib/index.mjs",
|
|
56
|
+
"require": "./lib/index.mjs"
|
|
52
57
|
},
|
|
53
58
|
"./package.json": "./package.json"
|
|
54
59
|
},
|
|
@@ -97,7 +102,8 @@
|
|
|
97
102
|
"test:vitest": "npx vitest --config ./configs/vitest.config.ts",
|
|
98
103
|
"test:ts-jest": "npx jest --config ./configs/ts-jest.config.json",
|
|
99
104
|
"test:swc": "npx jest --config ./configs/swc-jest.config.json",
|
|
100
|
-
"prepublishOnly": "npm run test && npm run build"
|
|
105
|
+
"prepublishOnly": "npm run test && npm run build",
|
|
106
|
+
"release": "semantic-release"
|
|
101
107
|
},
|
|
102
108
|
"sideEffects": false,
|
|
103
109
|
"support": {
|
|
@@ -105,5 +111,6 @@
|
|
|
105
111
|
"npm-funding": true
|
|
106
112
|
}
|
|
107
113
|
},
|
|
108
|
-
"types": "./index.d.ts"
|
|
114
|
+
"types": "./index.d.ts",
|
|
115
|
+
"packageManager": "yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
|
|
109
116
|
}
|