create-reciple 9.12.0 → 10.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/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +29 -59
- package/LICENSE +0 -674
- package/README.md +0 -44
- package/assets/README.md +0 -29
- package/dist/bin.d.ts +0 -2
- package/dist/bin.js +0 -58
- package/dist/bin.js.map +0 -1
- package/dist/classes/Addon.d.ts +0 -68
- package/dist/classes/Addon.js +0 -111
- package/dist/classes/Addon.js.map +0 -1
- package/dist/classes/Config.d.ts +0 -31
- package/dist/classes/Config.js +0 -61
- package/dist/classes/Config.js.map +0 -1
- package/dist/classes/Setup.d.ts +0 -43
- package/dist/classes/Setup.js +0 -149
- package/dist/classes/Setup.js.map +0 -1
- package/dist/classes/TemplateBuilder.d.ts +0 -94
- package/dist/classes/TemplateBuilder.js +0 -244
- package/dist/classes/TemplateBuilder.js.map +0 -1
- package/dist/index.d.ts +0 -7
- package/dist/index.js +0 -8
- package/dist/index.js.map +0 -1
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/constants.js +0 -75
- package/dist/utils/constants.js.map +0 -1
- package/dist/utils/helpers.d.ts +0 -32
- package/dist/utils/helpers.js +0 -88
- package/dist/utils/helpers.js.map +0 -1
- package/dist/utils/types.d.ts +0 -20
- package/dist/utils/types.js +0 -2
- package/dist/utils/types.js.map +0 -1
- package/templates/javascript/dot.gitignore +0 -130
- package/templates/javascript/modules/commands/PingCommand.js +0 -68
- package/templates/javascript/modules/events/WelcomeEvent.js +0 -54
- package/templates/javascript/modules/halts/CommandErrorHalt.js +0 -59
- package/templates/javascript/modules/preconditions/ExamplePrecondition.js +0 -27
- package/templates/javascript/nodemon.json +0 -16
- package/templates/javascript/package.json +0 -18
- package/templates/javascript/template.json +0 -4
- package/templates/typescript/dot.gitignore +0 -133
- package/templates/typescript/nodemon.json +0 -17
- package/templates/typescript/package.json +0 -21
- package/templates/typescript/src/commands/PingCommand.ts +0 -52
- package/templates/typescript/src/events/WelcomeEvent.ts +0 -39
- package/templates/typescript/src/halts/CommandErrorHalt.ts +0 -44
- package/templates/typescript/src/preconditions/ExamplePrecondition.ts +0 -18
- package/templates/typescript/template.json +0 -4
- package/templates/typescript/tsconfig.json +0 -19
- package/templates/typescript-decorators/dot.gitignore +0 -133
- package/templates/typescript-decorators/nodemon.json +0 -17
- package/templates/typescript-decorators/package.json +0 -22
- package/templates/typescript-decorators/src/commands/PingCommand.ts +0 -45
- package/templates/typescript-decorators/src/events/WelcomeEvent.ts +0 -37
- package/templates/typescript-decorators/src/halts/CommandErrorHalt.ts +0 -44
- package/templates/typescript-decorators/src/preconditions/ExamplePrecondition.ts +0 -18
- package/templates/typescript-decorators/template.json +0 -4
- package/templates/typescript-decorators/tsconfig.json +0 -19
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { fork } from "node:child_process";
|
|
3
|
+
import { CLI } from "reciple";
|
|
4
|
+
|
|
5
|
+
//#region src/index.ts
|
|
6
|
+
fork(CLI.bin, ["create", ...process.argv.slice(2)], { stdio: "inherit" });
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
export { };
|
|
10
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { fork } from 'node:child_process';\nimport { CLI } from 'reciple';\n\nfork(CLI.bin, ['create', ...process.argv.slice(2)], {\n stdio: 'inherit'\n});\n"],"mappings":";;;;;AAIA,KAAK,IAAI,KAAK,CAAC,UAAU,GAAG,QAAQ,KAAK,MAAM,EAAE,CAAC,EAAE,EAChD,OAAO,WACV,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,59 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "create-reciple",
|
|
3
|
-
"
|
|
4
|
-
"license": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"prepack": "npm run build"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"templates",
|
|
35
|
-
"assets",
|
|
36
|
-
"README.md"
|
|
37
|
-
],
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@clack/prompts": "^0.9.1",
|
|
40
|
-
"@reciple/core": "^9.9.0",
|
|
41
|
-
"@reciple/decorators": "^9.5.0",
|
|
42
|
-
"@reciple/utils": "^9.8.0",
|
|
43
|
-
"commander": "^13.1.0",
|
|
44
|
-
"compressing": "^1.10.1",
|
|
45
|
-
"detect-indent": "^7.0.1",
|
|
46
|
-
"discord.js": "^14.18.0",
|
|
47
|
-
"fallout-utility": "^2.9.1",
|
|
48
|
-
"ora": "^8.2.0",
|
|
49
|
-
"package-json": "^10.0.1",
|
|
50
|
-
"reciple": "^9.9.0"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@types/node": "^22.13.7",
|
|
54
|
-
"nodemon": "^3.1.9",
|
|
55
|
-
"rimraf": "^6.0.1",
|
|
56
|
-
"typescript": "^5.7.2"
|
|
57
|
-
},
|
|
58
|
-
"gitHead": "ff4612a6d5c11540f45cdaeb1e3a01f5cbf952d8"
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "create-reciple",
|
|
3
|
+
"version": "10.0.0",
|
|
4
|
+
"license": "LGPL-3.0-only",
|
|
5
|
+
"description": "Alias for `reciple create`",
|
|
6
|
+
"bin": "./dist/index.mjs",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"clean": "rimraf ./dist",
|
|
14
|
+
"build": "tsdown --config-loader unrun",
|
|
15
|
+
"check": "tsc --noEmit",
|
|
16
|
+
"prepack": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/thenorthsolution/reciple",
|
|
21
|
+
"directory": "packages/create-reciple"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"reciple": "*"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
}
|
|
29
|
+
}
|