create-grok 1.0.0 → 1.0.1

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/bin/index.js +4 -0
  2. package/package.json +10 -3
package/bin/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`不朽堡垒
4
+ 曾经是冥魂莫德凯撒的要塞,如今成为了隐藏秘密的禁地。诺克萨斯帝国扩张了上千年,帝国的首都就在这座堡垒的阴影之中不断壮大。`);
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "create-grok",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
- "main": "index.js",
5
+ "main": "bin/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "create-grok": "bin/index.js"
9
+ },
10
+ "files": [
11
+ "bin"
12
+ ],
6
13
  "scripts": {
7
14
  "test": "echo \"Error: no test specified\" && exit 1"
8
15
  },
@@ -10,4 +17,4 @@
10
17
  "author": "",
11
18
  "license": "ISC",
12
19
  "packageManager": "pnpm@10.27.0"
13
- }
20
+ }