create-amiki 1.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/index.js +23 -0
- package/package.json +44 -0
package/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// SPDX-License-Identifier: GPL-2.0-only
|
|
3
|
+
// Copyright (c) 2026 amiki-framework Contributors
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* create-amiki — Thin wrapper around @amiki/create.
|
|
7
|
+
*
|
|
8
|
+
* This package exists so that `bun create amiki` works.
|
|
9
|
+
* Bun resolves "create-<name>" from npm, and this package
|
|
10
|
+
* simply delegates to the real implementation in @amiki/create.
|
|
11
|
+
*
|
|
12
|
+
* Usage:
|
|
13
|
+
* bun create amiki
|
|
14
|
+
* bun create amiki my-project
|
|
15
|
+
* npx create-amiki
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
import { main } from '@amiki/create';
|
|
19
|
+
|
|
20
|
+
main().catch((err: unknown) => {
|
|
21
|
+
console.error('Error:', err);
|
|
22
|
+
process.exit(1);
|
|
23
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-amiki",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Scaffolding wizard for amiki-framework — thin wrapper around @amiki/create. Run: bun create amiki",
|
|
5
|
+
"license": "GPL-2.0-only",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"create-amiki": "./index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.js",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/Baconana-chan/amiki-framework.git",
|
|
21
|
+
"directory": "packages/create-amiki"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/Baconana-chan/amiki-framework/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/Baconana-chan/amiki-framework/tree/main/packages/create-amiki#readme",
|
|
27
|
+
"author": "amiki-framework Contributors",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"discord",
|
|
30
|
+
"bot",
|
|
31
|
+
"bun",
|
|
32
|
+
"scaffolding",
|
|
33
|
+
"create",
|
|
34
|
+
"template",
|
|
35
|
+
"discord-framework"
|
|
36
|
+
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"bun": ">=1.3.0",
|
|
39
|
+
"node": ">=18.0.0"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@amiki/create": "^1.0.0"
|
|
43
|
+
}
|
|
44
|
+
}
|