create-kokkoro 0.0.0

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/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # create-kokkoro
2
+
3
+ Kokkoro QQ 机器人框架的项目创建工具。
4
+
5
+ ```shell
6
+ bun create kokkoro
7
+ ```
8
+
9
+ 按照提示输入项目名称,即可在当前目录创建 Kokkoro 项目。
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "create-kokkoro",
3
+ "version": "0.0.0",
4
+ "description": "The project scaffolding tool for the Kokkoro QQ bot framework.",
5
+ "keywords": [
6
+ "bot",
7
+ "kokkoro",
8
+ "qq",
9
+ "qqbot"
10
+ ],
11
+ "homepage": "https://kokkoro.js.org/",
12
+ "bugs": {
13
+ "url": "https://github.com/kokkorojs/kokkoro/issues"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/kokkorojs/kokkoro.git",
18
+ "directory": "packages/create-kokkoro"
19
+ },
20
+ "license": "MIT",
21
+ "author": "Yuki <admin@yuki.sh>",
22
+ "type": "module",
23
+ "bin": {
24
+ "create-kokkoro": "./src/index.ts"
25
+ },
26
+ "files": [
27
+ "src"
28
+ ],
29
+ "peerDependencies": {
30
+ "typescript": "^6.0.3"
31
+ }
32
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ #!/usr/bin/env bun