reciple 10.0.1-dev.1 → 10.0.1-dev.2

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.
@@ -86,7 +86,7 @@ var CLI = class {
86
86
  (function(_CLI) {
87
87
  _CLI.root = path.join(path.dirname(fileURLToPath(import.meta.url)), "../../../");
88
88
  _CLI.bin = path.join(CLI.root, "dist/bin/reciple.js");
89
- _CLI.version = "10.0.1-dev.1";
89
+ _CLI.version = "10.0.1-dev.2";
90
90
  function stringifyFlags(flags, command, ignored = []) {
91
91
  let arr = [];
92
92
  for (const [key, value] of Object.entries(flags)) {
@@ -1,36 +1,36 @@
1
1
  import { ModuleType } from "../../helpers/constants.mjs";
2
2
  import { AnyModuleData } from "../../helpers/types.mjs";
3
3
  import { Validator } from "@reciple/core";
4
- import * as _sapphire_shapeshift23 from "@sapphire/shapeshift";
4
+ import * as _sapphire_shapeshift0 from "@sapphire/shapeshift";
5
5
 
6
6
  //#region src/classes/validation/BaseModuleValidator.d.ts
7
7
  declare class BaseModuleValidator extends Validator {
8
- static id: _sapphire_shapeshift23.StringValidator<string>;
9
- static moduleType: _sapphire_shapeshift23.NativeEnumValidator<typeof ModuleType>;
10
- static onEnable: _sapphire_shapeshift23.UnionValidator<Function | undefined>;
11
- static onReady: _sapphire_shapeshift23.UnionValidator<Function | undefined>;
12
- static onDisable: _sapphire_shapeshift23.UnionValidator<Function | undefined>;
13
- static object: _sapphire_shapeshift23.ObjectValidator<{
8
+ static id: _sapphire_shapeshift0.StringValidator<string>;
9
+ static moduleType: _sapphire_shapeshift0.NativeEnumValidator<typeof ModuleType>;
10
+ static onEnable: _sapphire_shapeshift0.UnionValidator<Function | undefined>;
11
+ static onReady: _sapphire_shapeshift0.UnionValidator<Function | undefined>;
12
+ static onDisable: _sapphire_shapeshift0.UnionValidator<Function | undefined>;
13
+ static object: _sapphire_shapeshift0.ObjectValidator<{
14
14
  id: string | undefined;
15
15
  moduleType: ModuleType | undefined;
16
16
  onEnable: Function | undefined;
17
17
  onReady: Function | undefined;
18
18
  onDisable: Function | undefined;
19
- }, _sapphire_shapeshift23.UndefinedToOptional<{
19
+ }, _sapphire_shapeshift0.UndefinedToOptional<{
20
20
  id: string | undefined;
21
21
  moduleType: ModuleType | undefined;
22
22
  onEnable: Function | undefined;
23
23
  onReady: Function | undefined;
24
24
  onDisable: Function | undefined;
25
25
  }>>;
26
- static resolvable: _sapphire_shapeshift23.UnionValidator<_sapphire_shapeshift23.UndefinedToOptional<{
27
- toJSON: Function;
28
- }> | _sapphire_shapeshift23.UndefinedToOptional<{
26
+ static resolvable: _sapphire_shapeshift0.UnionValidator<_sapphire_shapeshift0.UndefinedToOptional<{
29
27
  id: string | undefined;
30
28
  moduleType: ModuleType | undefined;
31
29
  onEnable: Function | undefined;
32
30
  onReady: Function | undefined;
33
31
  onDisable: Function | undefined;
32
+ }> | _sapphire_shapeshift0.UndefinedToOptional<{
33
+ toJSON: Function;
34
34
  }>>;
35
35
  static isValidId(id: unknown): asserts id is string;
36
36
  static isValidModuleType(moduleType: unknown): asserts moduleType is ModuleType;
@@ -3,11 +3,11 @@ import { AnyCommandModuleData } from "../../helpers/types.mjs";
3
3
  import "../../index.mjs";
4
4
  import * as _reciple_core0 from "@reciple/core";
5
5
  import { Validator } from "@reciple/core";
6
- import * as _sapphire_shapeshift6 from "@sapphire/shapeshift";
6
+ import * as _sapphire_shapeshift9 from "@sapphire/shapeshift";
7
7
 
8
8
  //#region src/classes/validation/CommandModuleValidator.d.ts
9
9
  declare class CommandModuleValidator extends Validator {
10
- static object: _sapphire_shapeshift6.ObjectValidator<{
10
+ static object: _sapphire_shapeshift9.ObjectValidator<{
11
11
  id: string | undefined;
12
12
  moduleType: ModuleType | undefined;
13
13
  onEnable: Function | undefined;
@@ -16,23 +16,23 @@ declare class CommandModuleValidator extends Validator {
16
16
  } & {
17
17
  id: string;
18
18
  type: _reciple_core0.CommandType;
19
- data: _sapphire_shapeshift6.UndefinedToOptional<{
19
+ data: _sapphire_shapeshift9.UndefinedToOptional<{
20
20
  name: any;
21
21
  description: any;
22
22
  aliases: any;
23
23
  options: any;
24
24
  flags: any;
25
- }> | _sapphire_shapeshift6.UndefinedToOptional<{
25
+ }> | _sapphire_shapeshift9.UndefinedToOptional<{
26
26
  type: any;
27
27
  name: any;
28
28
  }>;
29
29
  cooldown: number | undefined;
30
- preconditions: _sapphire_shapeshift6.UndefinedToOptional<{
30
+ preconditions: _sapphire_shapeshift9.UndefinedToOptional<{
31
31
  id: any;
32
32
  scope: any;
33
33
  execute: any;
34
34
  }>[] | undefined;
35
- postconditions: _sapphire_shapeshift6.UndefinedToOptional<{
35
+ postconditions: _sapphire_shapeshift9.UndefinedToOptional<{
36
36
  id: any;
37
37
  scope: any;
38
38
  execute: any;
@@ -40,7 +40,7 @@ declare class CommandModuleValidator extends Validator {
40
40
  disabledPreconditions: string[] | undefined;
41
41
  disabledPostconditions: string[] | undefined;
42
42
  execute: Function;
43
- }, _sapphire_shapeshift6.UndefinedToOptional<{
43
+ }, _sapphire_shapeshift9.UndefinedToOptional<{
44
44
  id: string | undefined;
45
45
  moduleType: ModuleType | undefined;
46
46
  onEnable: Function | undefined;
@@ -49,23 +49,23 @@ declare class CommandModuleValidator extends Validator {
49
49
  } & {
50
50
  id: string;
51
51
  type: _reciple_core0.CommandType;
52
- data: _sapphire_shapeshift6.UndefinedToOptional<{
52
+ data: _sapphire_shapeshift9.UndefinedToOptional<{
53
53
  name: any;
54
54
  description: any;
55
55
  aliases: any;
56
56
  options: any;
57
57
  flags: any;
58
- }> | _sapphire_shapeshift6.UndefinedToOptional<{
58
+ }> | _sapphire_shapeshift9.UndefinedToOptional<{
59
59
  type: any;
60
60
  name: any;
61
61
  }>;
62
62
  cooldown: number | undefined;
63
- preconditions: _sapphire_shapeshift6.UndefinedToOptional<{
63
+ preconditions: _sapphire_shapeshift9.UndefinedToOptional<{
64
64
  id: any;
65
65
  scope: any;
66
66
  execute: any;
67
67
  }>[] | undefined;
68
- postconditions: _sapphire_shapeshift6.UndefinedToOptional<{
68
+ postconditions: _sapphire_shapeshift9.UndefinedToOptional<{
69
69
  id: any;
70
70
  scope: any;
71
71
  execute: any;
@@ -74,9 +74,9 @@ declare class CommandModuleValidator extends Validator {
74
74
  disabledPostconditions: string[] | undefined;
75
75
  execute: Function;
76
76
  }>>;
77
- static resolvable: _sapphire_shapeshift6.UnionValidator<_sapphire_shapeshift6.UndefinedToOptional<{
77
+ static resolvable: _sapphire_shapeshift9.UnionValidator<_sapphire_shapeshift9.UndefinedToOptional<{
78
78
  toJSON: Function;
79
- }> | _sapphire_shapeshift6.UndefinedToOptional<{
79
+ }> | _sapphire_shapeshift9.UndefinedToOptional<{
80
80
  id: string | undefined;
81
81
  moduleType: ModuleType | undefined;
82
82
  onEnable: Function | undefined;
@@ -85,23 +85,23 @@ declare class CommandModuleValidator extends Validator {
85
85
  } & {
86
86
  id: string;
87
87
  type: _reciple_core0.CommandType;
88
- data: _sapphire_shapeshift6.UndefinedToOptional<{
88
+ data: _sapphire_shapeshift9.UndefinedToOptional<{
89
89
  name: any;
90
90
  description: any;
91
91
  aliases: any;
92
92
  options: any;
93
93
  flags: any;
94
- }> | _sapphire_shapeshift6.UndefinedToOptional<{
94
+ }> | _sapphire_shapeshift9.UndefinedToOptional<{
95
95
  type: any;
96
96
  name: any;
97
97
  }>;
98
98
  cooldown: number | undefined;
99
- preconditions: _sapphire_shapeshift6.UndefinedToOptional<{
99
+ preconditions: _sapphire_shapeshift9.UndefinedToOptional<{
100
100
  id: any;
101
101
  scope: any;
102
102
  execute: any;
103
103
  }>[] | undefined;
104
- postconditions: _sapphire_shapeshift6.UndefinedToOptional<{
104
+ postconditions: _sapphire_shapeshift9.UndefinedToOptional<{
105
105
  id: any;
106
106
  scope: any;
107
107
  execute: any;
@@ -3,15 +3,15 @@ import { EventModule } from "../modules/events/EventModule.mjs";
3
3
  import "../../index.mjs";
4
4
  import { Validator } from "@reciple/core";
5
5
  import { EventEmitter } from "node:events";
6
- import * as _sapphire_shapeshift41 from "@sapphire/shapeshift";
6
+ import * as _sapphire_shapeshift26 from "@sapphire/shapeshift";
7
7
 
8
8
  //#region src/classes/validation/EventModuleValidator.d.ts
9
9
  declare class EventModuleValidator extends Validator {
10
- static emitter: _sapphire_shapeshift41.InstanceValidator<EventEmitter<[never] | Record<string | number | symbol, any[]>>>;
11
- static event: _sapphire_shapeshift41.StringValidator<string>;
12
- static once: _sapphire_shapeshift41.UnionValidator<boolean | undefined>;
13
- static onEvent: _sapphire_shapeshift41.InstanceValidator<Function>;
14
- static object: _sapphire_shapeshift41.ObjectValidator<{
10
+ static emitter: _sapphire_shapeshift26.InstanceValidator<EventEmitter<[never] | Record<string | number | symbol, any[]>>>;
11
+ static event: _sapphire_shapeshift26.StringValidator<string>;
12
+ static once: _sapphire_shapeshift26.UnionValidator<boolean | undefined>;
13
+ static onEvent: _sapphire_shapeshift26.InstanceValidator<Function>;
14
+ static object: _sapphire_shapeshift26.ObjectValidator<{
15
15
  id: string | undefined;
16
16
  moduleType: ModuleType | undefined;
17
17
  onEnable: Function | undefined;
@@ -22,7 +22,7 @@ declare class EventModuleValidator extends Validator {
22
22
  event: string;
23
23
  once: boolean | undefined;
24
24
  onEvent: Function;
25
- }, _sapphire_shapeshift41.UndefinedToOptional<{
25
+ }, _sapphire_shapeshift26.UndefinedToOptional<{
26
26
  id: string | undefined;
27
27
  moduleType: ModuleType | undefined;
28
28
  onEnable: Function | undefined;
@@ -34,9 +34,9 @@ declare class EventModuleValidator extends Validator {
34
34
  once: boolean | undefined;
35
35
  onEvent: Function;
36
36
  }>>;
37
- static resolvable: _sapphire_shapeshift41.UnionValidator<_sapphire_shapeshift41.UndefinedToOptional<{
37
+ static resolvable: _sapphire_shapeshift26.UnionValidator<_sapphire_shapeshift26.UndefinedToOptional<{
38
38
  toJSON: Function;
39
- }> | _sapphire_shapeshift41.UndefinedToOptional<{
39
+ }> | _sapphire_shapeshift26.UndefinedToOptional<{
40
40
  id: string | undefined;
41
41
  moduleType: ModuleType | undefined;
42
42
  onEnable: Function | undefined;
@@ -1,22 +1,22 @@
1
1
  import { PostconditionModule } from "../modules/PostconditionModule.mjs";
2
2
  import { CommandPostconditionReason, CommandType, Validator } from "@reciple/core";
3
- import * as _sapphire_shapeshift33 from "@sapphire/shapeshift";
3
+ import * as _sapphire_shapeshift35 from "@sapphire/shapeshift";
4
4
 
5
5
  //#region src/classes/validation/PostconditionModule.d.ts
6
6
  declare class PostconditionModuleValidator extends Validator {
7
- static scope: _sapphire_shapeshift33.UnionValidator<CommandType[] | undefined>;
8
- static accepts: _sapphire_shapeshift33.UnionValidator<CommandPostconditionReason[] | undefined>;
9
- static execute: _sapphire_shapeshift33.InstanceValidator<Function>;
10
- static object: _sapphire_shapeshift33.ObjectValidator<{
7
+ static scope: _sapphire_shapeshift35.UnionValidator<CommandType[] | undefined>;
8
+ static accepts: _sapphire_shapeshift35.UnionValidator<CommandPostconditionReason[] | undefined>;
9
+ static execute: _sapphire_shapeshift35.InstanceValidator<Function>;
10
+ static object: _sapphire_shapeshift35.ObjectValidator<{
11
11
  scope: CommandType[] | undefined;
12
12
  execute: Function;
13
- }, _sapphire_shapeshift33.UndefinedToOptional<{
13
+ }, _sapphire_shapeshift35.UndefinedToOptional<{
14
14
  scope: CommandType[] | undefined;
15
15
  execute: Function;
16
16
  }>>;
17
- static resolvable: _sapphire_shapeshift33.UnionValidator<_sapphire_shapeshift33.UndefinedToOptional<{
17
+ static resolvable: _sapphire_shapeshift35.UnionValidator<_sapphire_shapeshift35.UndefinedToOptional<{
18
18
  toJSON: Function;
19
- }> | _sapphire_shapeshift33.UndefinedToOptional<{
19
+ }> | _sapphire_shapeshift35.UndefinedToOptional<{
20
20
  scope: CommandType[] | undefined;
21
21
  execute: Function;
22
22
  }>>;
@@ -1,23 +1,23 @@
1
1
  import { PreconditionModule } from "../modules/PreconditionModule.mjs";
2
2
  import { CommandType, Validator } from "@reciple/core";
3
- import * as _sapphire_shapeshift0 from "@sapphire/shapeshift";
3
+ import * as _sapphire_shapeshift43 from "@sapphire/shapeshift";
4
4
 
5
5
  //#region src/classes/validation/PreconditionModule.d.ts
6
6
  declare class PreconditionModuleValidator extends Validator {
7
- static scope: _sapphire_shapeshift0.UnionValidator<CommandType[] | undefined>;
8
- static execute: _sapphire_shapeshift0.InstanceValidator<Function>;
9
- static object: _sapphire_shapeshift0.ObjectValidator<{
7
+ static scope: _sapphire_shapeshift43.UnionValidator<CommandType[] | undefined>;
8
+ static execute: _sapphire_shapeshift43.InstanceValidator<Function>;
9
+ static object: _sapphire_shapeshift43.ObjectValidator<{
10
10
  scope: CommandType[] | undefined;
11
11
  execute: Function;
12
- }, _sapphire_shapeshift0.UndefinedToOptional<{
12
+ }, _sapphire_shapeshift43.UndefinedToOptional<{
13
13
  scope: CommandType[] | undefined;
14
14
  execute: Function;
15
15
  }>>;
16
- static resolvable: _sapphire_shapeshift0.UnionValidator<_sapphire_shapeshift0.UndefinedToOptional<{
16
+ static resolvable: _sapphire_shapeshift43.UnionValidator<_sapphire_shapeshift43.UndefinedToOptional<{
17
+ toJSON: Function;
18
+ }> | _sapphire_shapeshift43.UndefinedToOptional<{
17
19
  scope: CommandType[] | undefined;
18
20
  execute: Function;
19
- }> | _sapphire_shapeshift0.UndefinedToOptional<{
20
- toJSON: Function;
21
21
  }>>;
22
22
  static isValidScope(scope: unknown): asserts scope is CommandType[];
23
23
  static isValidExecute(execute: unknown): asserts execute is (...args: unknown[]) => Promise<void>;
package/dist/package.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  //#region package.json
2
2
  var package_default = {
3
3
  name: "reciple",
4
- version: "10.0.1-dev.1",
4
+ version: "10.0.1-dev.2",
5
5
  license: "LGPL-3.0-only",
6
6
  description: "The CLI for reciple",
7
7
  module: "./dist/index.mjs",
@@ -48,6 +48,7 @@ var package_default = {
48
48
  "micromatch": "^4.0.8",
49
49
  "ora": "^9.0.0",
50
50
  "pkg-types": "^2.3.0",
51
+ "prtyprnt": "^2.0.1",
51
52
  "semver": "^7.7.3",
52
53
  "ts-mixer": "^6.0.4",
53
54
  "tsdown": "^0.16.8",
@@ -60,7 +61,6 @@ var package_default = {
60
61
  "@types/node": "^24.10.1",
61
62
  "@types/semver": "^7.7.1",
62
63
  "nodemon": "^3.1.11",
63
- "prtyprnt": "^2.0.1",
64
64
  "rolldown": "^1.0.0-beta.52"
65
65
  },
66
66
  peerDependencies: {
@@ -72,7 +72,7 @@ var package_default = {
72
72
  "discord.js": { "optional": false }
73
73
  },
74
74
  publishConfig: { "access": "public" },
75
- gitHead: "d1b10df6047657e7427a7811a5c808487b4985f4"
75
+ gitHead: "6bf04454b9e64a1c39ad66a3587ef88626cd1835"
76
76
  };
77
77
 
78
78
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"package.mjs","names":[],"sources":["../package.json"],"sourcesContent":["{\n \"name\": \"reciple\",\n \"version\": \"10.0.1-dev.1\",\n \"license\": \"LGPL-3.0-only\",\n \"description\": \"The CLI for reciple\",\n \"module\": \"./dist/index.mjs\",\n \"types\": \"./dist/index.d.mts\",\n \"bin\": \"./dist/bin/reciple.mjs\",\n \"type\": \"module\",\n \"exports\": {\n \".\": {\n \"import\": \"./dist/index.mjs\",\n \"types\": \"./dist/index.d.mts\"\n },\n \"./jsx-runtime\": {\n \"import\": \"./dist/helpers/jsx-runtime.mjs\",\n \"types\": \"./dist/helpers/jsx-runtime.d.mts\"\n }\n },\n \"files\": [\n \"dist\",\n \"assets\",\n \"README.md\"\n ],\n \"scripts\": {\n \"clean\": \"rimraf ./dist\",\n \"build\": \"tsdown --config-loader unrun\",\n \"check\": \"tsc --noEmit\",\n \"prepack\": \"npm run build\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/thenorthsolution/reciple\",\n \"directory\": \"packages/reciple\"\n },\n \"dependencies\": {\n \"@clack/prompts\": \"^0.11.0\",\n \"@dotenvx/dotenvx\": \"^1.51.1\",\n \"@reciple/utils\": \"^10.0.1-dev.0\",\n \"@sapphire/shapeshift\": \"^4.0.0\",\n \"@sapphire/snowflake\": \"^3.5.5\",\n \"commander\": \"^14.0.2\",\n \"detect-indent\": \"^7.0.2\",\n \"github-slugger\": \"^2.0.0\",\n \"globby\": \"^16.0.0\",\n \"load-tsconfig\": \"^0.2.5\",\n \"micromatch\": \"^4.0.8\",\n \"ora\": \"^9.0.0\",\n \"pkg-types\": \"^2.3.0\",\n \"semver\": \"^7.7.3\",\n \"ts-mixer\": \"^6.0.4\",\n \"tsdown\": \"^0.16.8\",\n \"unconfig\": \"^7.4.1\",\n \"unrun\": \"^0.2.14\"\n },\n \"devDependencies\": {\n \"@reciple/jsx\": \"^10.0.1-dev.0\",\n \"@types/micromatch\": \"^4.0.10\",\n \"@types/node\": \"^24.10.1\",\n \"@types/semver\": \"^7.7.1\",\n \"nodemon\": \"^3.1.11\",\n \"prtyprnt\": \"^2.0.1\",\n \"rolldown\": \"^1.0.0-beta.52\"\n },\n \"peerDependencies\": {\n \"@reciple/core\": \"^10.0.0 || >=10.0.1-dev.0\",\n \"discord.js\": \"^14.25.1\"\n },\n \"peerDependenciesMeta\": {\n \"@reciple/core\": {\n \"optional\": false\n },\n \"discord.js\": {\n \"optional\": false\n }\n },\n \"publishConfig\": {\n \"access\": \"public\"\n },\n \"gitHead\": \"d1b10df6047657e7427a7811a5c808487b4985f4\"\n}\n"],"mappings":";sBAAA;OACU;UACG;UACA;cACI;SACL;QACD;MACF;OACC;UACG;EACT,KAAK;GACH,UAAU;GACV,SAAS;GACV;EACD,iBAAiB;GACf,UAAU;GACV,SAAS;GACV;EACF;QACQ;EACP;EACA;EACA;EACD;UACU;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,WAAW;EACZ;aACa;EACZ,QAAQ;EACR,OAAO;EACP,aAAa;EACd;eACe;EACd,kBAAkB;EAClB,oBAAoB;EACpB,kBAAkB;EAClB,wBAAwB;EACxB,uBAAuB;EACvB,aAAa;EACb,iBAAiB;EACjB,kBAAkB;EAClB,UAAU;EACV,iBAAiB;EACjB,cAAc;EACd,OAAO;EACP,aAAa;EACb,UAAU;EACV,YAAY;EACZ,UAAU;EACV,YAAY;EACZ,SAAS;EACV;kBACkB;EACjB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe;EACf,iBAAiB;EACjB,WAAW;EACX,YAAY;EACZ,YAAY;EACb;mBACmB;EAClB,iBAAiB;EACjB,cAAc;EACf;uBACuB;EACtB,iBAAiB,EACf,YAAY,OACb;EACD,cAAc,EACZ,YAAY,OACb;EACF;gBACgB,EACf,UAAU,UACX;UACU;CACZ"}
1
+ {"version":3,"file":"package.mjs","names":[],"sources":["../package.json"],"sourcesContent":["{\n \"name\": \"reciple\",\n \"version\": \"10.0.1-dev.2\",\n \"license\": \"LGPL-3.0-only\",\n \"description\": \"The CLI for reciple\",\n \"module\": \"./dist/index.mjs\",\n \"types\": \"./dist/index.d.mts\",\n \"bin\": \"./dist/bin/reciple.mjs\",\n \"type\": \"module\",\n \"exports\": {\n \".\": {\n \"import\": \"./dist/index.mjs\",\n \"types\": \"./dist/index.d.mts\"\n },\n \"./jsx-runtime\": {\n \"import\": \"./dist/helpers/jsx-runtime.mjs\",\n \"types\": \"./dist/helpers/jsx-runtime.d.mts\"\n }\n },\n \"files\": [\n \"dist\",\n \"assets\",\n \"README.md\"\n ],\n \"scripts\": {\n \"clean\": \"rimraf ./dist\",\n \"build\": \"tsdown --config-loader unrun\",\n \"check\": \"tsc --noEmit\",\n \"prepack\": \"npm run build\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/thenorthsolution/reciple\",\n \"directory\": \"packages/reciple\"\n },\n \"dependencies\": {\n \"@clack/prompts\": \"^0.11.0\",\n \"@dotenvx/dotenvx\": \"^1.51.1\",\n \"@reciple/utils\": \"^10.0.1-dev.0\",\n \"@sapphire/shapeshift\": \"^4.0.0\",\n \"@sapphire/snowflake\": \"^3.5.5\",\n \"commander\": \"^14.0.2\",\n \"detect-indent\": \"^7.0.2\",\n \"github-slugger\": \"^2.0.0\",\n \"globby\": \"^16.0.0\",\n \"load-tsconfig\": \"^0.2.5\",\n \"micromatch\": \"^4.0.8\",\n \"ora\": \"^9.0.0\",\n \"pkg-types\": \"^2.3.0\",\n \"prtyprnt\": \"^2.0.1\",\n \"semver\": \"^7.7.3\",\n \"ts-mixer\": \"^6.0.4\",\n \"tsdown\": \"^0.16.8\",\n \"unconfig\": \"^7.4.1\",\n \"unrun\": \"^0.2.14\"\n },\n \"devDependencies\": {\n \"@reciple/jsx\": \"^10.0.1-dev.0\",\n \"@types/micromatch\": \"^4.0.10\",\n \"@types/node\": \"^24.10.1\",\n \"@types/semver\": \"^7.7.1\",\n \"nodemon\": \"^3.1.11\",\n \"rolldown\": \"^1.0.0-beta.52\"\n },\n \"peerDependencies\": {\n \"@reciple/core\": \"^10.0.0 || >=10.0.1-dev.0\",\n \"discord.js\": \"^14.25.1\"\n },\n \"peerDependenciesMeta\": {\n \"@reciple/core\": {\n \"optional\": false\n },\n \"discord.js\": {\n \"optional\": false\n }\n },\n \"publishConfig\": {\n \"access\": \"public\"\n },\n \"gitHead\": \"6bf04454b9e64a1c39ad66a3587ef88626cd1835\"\n}\n"],"mappings":";sBAAA;OACU;UACG;UACA;cACI;SACL;QACD;MACF;OACC;UACG;EACT,KAAK;GACH,UAAU;GACV,SAAS;GACV;EACD,iBAAiB;GACf,UAAU;GACV,SAAS;GACV;EACF;QACQ;EACP;EACA;EACA;EACD;UACU;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,WAAW;EACZ;aACa;EACZ,QAAQ;EACR,OAAO;EACP,aAAa;EACd;eACe;EACd,kBAAkB;EAClB,oBAAoB;EACpB,kBAAkB;EAClB,wBAAwB;EACxB,uBAAuB;EACvB,aAAa;EACb,iBAAiB;EACjB,kBAAkB;EAClB,UAAU;EACV,iBAAiB;EACjB,cAAc;EACd,OAAO;EACP,aAAa;EACb,YAAY;EACZ,UAAU;EACV,YAAY;EACZ,UAAU;EACV,YAAY;EACZ,SAAS;EACV;kBACkB;EACjB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe;EACf,iBAAiB;EACjB,WAAW;EACX,YAAY;EACb;mBACmB;EAClB,iBAAiB;EACjB,cAAc;EACf;uBACuB;EACtB,iBAAiB,EACf,YAAY,OACb;EACD,cAAc,EACZ,YAAY,OACb;EACF;gBACgB,EACf,UAAU,UACX;UACU;CACZ"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reciple",
3
- "version": "10.0.1-dev.1",
3
+ "version": "10.0.1-dev.2",
4
4
  "license": "LGPL-3.0-only",
5
5
  "description": "The CLI for reciple",
6
6
  "module": "./dist/index.mjs",
@@ -47,6 +47,7 @@
47
47
  "micromatch": "^4.0.8",
48
48
  "ora": "^9.0.0",
49
49
  "pkg-types": "^2.3.0",
50
+ "prtyprnt": "^2.0.1",
50
51
  "semver": "^7.7.3",
51
52
  "ts-mixer": "^6.0.4",
52
53
  "tsdown": "^0.16.8",
@@ -59,7 +60,6 @@
59
60
  "@types/node": "^24.10.1",
60
61
  "@types/semver": "^7.7.1",
61
62
  "nodemon": "^3.1.11",
62
- "prtyprnt": "^2.0.1",
63
63
  "rolldown": "^1.0.0-beta.52"
64
64
  },
65
65
  "peerDependencies": {
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "d1b10df6047657e7427a7811a5c808487b4985f4"
80
+ "gitHead": "6bf04454b9e64a1c39ad66a3587ef88626cd1835"
81
81
  }