@zhin.js/adapter-onebot11 1.0.14 → 1.0.16
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/CHANGELOG.md +16 -0
- package/package.json +23 -5
- package/tsconfig.json +0 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @zhin.js/adapter-onebot11
|
|
2
2
|
|
|
3
|
+
## 1.0.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0ed27a7: fix: build ob11
|
|
8
|
+
|
|
9
|
+
## 1.0.15
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 547028f: fix: 优化包结构,优化客户端支持
|
|
14
|
+
- Updated dependencies [547028f]
|
|
15
|
+
- @zhin.js/types@1.0.5
|
|
16
|
+
- @zhin.js/http@1.0.7
|
|
17
|
+
- zhin.js@1.0.14
|
|
18
|
+
|
|
3
19
|
## 1.0.14
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhin.js/adapter-onebot11",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "zhin adapter for onebot11",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -11,6 +11,24 @@
|
|
|
11
11
|
"import": "./lib/index.js"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
|
+
"files": [
|
|
15
|
+
"lib",
|
|
16
|
+
"src",
|
|
17
|
+
"README.md",
|
|
18
|
+
"CHANGELOG.md"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"zhin",
|
|
22
|
+
"adapter",
|
|
23
|
+
"onebot11"
|
|
24
|
+
],
|
|
25
|
+
"author": "lc-cn",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"url": "git+https://github.com/zhinjs/zhin.git",
|
|
29
|
+
"type": "git",
|
|
30
|
+
"directory": "plugins/adapters/onebot11"
|
|
31
|
+
},
|
|
14
32
|
"dependencies": {
|
|
15
33
|
"ws": "^8.18.3"
|
|
16
34
|
},
|
|
@@ -20,9 +38,9 @@
|
|
|
20
38
|
"typescript": "^5.3.0"
|
|
21
39
|
},
|
|
22
40
|
"peerDependencies": {
|
|
23
|
-
"zhin.js": "1.0.
|
|
24
|
-
"@zhin.js/
|
|
25
|
-
"@zhin.js/
|
|
41
|
+
"zhin.js": "1.0.14",
|
|
42
|
+
"@zhin.js/types": "1.0.5",
|
|
43
|
+
"@zhin.js/http": "1.0.7"
|
|
26
44
|
},
|
|
27
45
|
"peerDependenciesMeta": {
|
|
28
46
|
"@zhin.js/types": {
|
|
@@ -33,7 +51,7 @@
|
|
|
33
51
|
}
|
|
34
52
|
},
|
|
35
53
|
"scripts": {
|
|
36
|
-
"build": "tsc",
|
|
54
|
+
"build": "tsc && (test -f ../../services/console/lib/bin.js && node ../../services/console/lib/bin.js build || echo 'Skipping client build: console not built yet')",
|
|
37
55
|
"clean": "rm -rf lib"
|
|
38
56
|
}
|
|
39
57
|
}
|
package/tsconfig.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"module": "ESNext",
|
|
5
|
-
"moduleResolution": "bundler",
|
|
6
|
-
"outDir": "./lib",
|
|
7
|
-
"rootDir": "./src",
|
|
8
|
-
"strict": true,
|
|
9
|
-
"esModuleInterop": true,
|
|
10
|
-
"skipLibCheck": true,
|
|
11
|
-
"forceConsistentCasingInFileNames": true,
|
|
12
|
-
"resolveJsonModule": true,
|
|
13
|
-
"isolatedModules": true,
|
|
14
|
-
"allowSyntheticDefaultImports": true,
|
|
15
|
-
"experimentalDecorators": true,
|
|
16
|
-
"emitDecoratorMetadata": true,
|
|
17
|
-
"declaration": true,
|
|
18
|
-
"declarationMap": true,
|
|
19
|
-
"sourceMap": true,
|
|
20
|
-
"verbatimModuleSyntax": false
|
|
21
|
-
},
|
|
22
|
-
"include": ["src/**/*"],
|
|
23
|
-
"exclude": ["lib", "node_modules"]
|
|
24
|
-
}
|