@zhin.js/schema 1.0.2 → 1.0.4

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 (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +19 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @zhin.js/schema
2
2
 
3
+ ## 1.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - a3b7673: fix: 调整依赖项
8
+ - Updated dependencies [5141137]
9
+ - zhin.js@1.0.20
10
+
11
+ ## 1.0.3
12
+
13
+ ### Patch Changes
14
+
15
+ - f9faa1d: fix: test release
16
+
3
17
  ## 1.0.2
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zhin.js/schema",
3
- "version": "1.0.2",
4
- "description": "Zhin Schema 配置验证系统",
3
+ "version": "1.0.4",
4
+ "description": "Configuration validation and schema system for Zhin.js",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
7
7
  "types": "./lib/index.d.ts",
@@ -13,13 +13,29 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "typescript": "^5.3.0",
16
- "@types/node": "^24.3.0"
16
+ "@types/node": "^24.3.0",
17
+ "zhin.js": "1.0.20"
17
18
  },
18
19
  "repository": {
19
20
  "type": "git",
20
21
  "url": "git+https://github.com/zhinjs/zhin.git",
21
22
  "directory": "basic/schema"
22
23
  },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "registry": "https://registry.npmjs.org"
27
+ },
28
+ "peerDependencies": {
29
+ "zhin.js": "1.0.20"
30
+ },
31
+ "keywords": [
32
+ "zhin",
33
+ "bot",
34
+ "schema",
35
+ "validation",
36
+ "config",
37
+ "type-checking"
38
+ ],
23
39
  "scripts": {
24
40
  "build": "tsc",
25
41
  "clean": "rm -rf lib"