@necord/schematics 1.3.8 → 2.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/LICENSE +1 -1
- package/README.md +1 -1
- package/dist/command/command-options.interface.d.ts +2 -2
- package/dist/command/command-options.interface.js +1 -2
- package/dist/command/command-type.enum.js +2 -5
- package/dist/command/index.d.ts +1 -1
- package/dist/command/index.js +7 -13
- package/dist/common/common-options.interface.js +1 -2
- package/dist/common/index.d.ts +2 -2
- package/dist/common/index.js +22 -29
- package/dist/component/component-options.interface.d.ts +2 -2
- package/dist/component/component-options.interface.js +1 -2
- package/dist/component/component-type.enum.js +2 -5
- package/dist/component/index.d.ts +1 -1
- package/dist/component/index.js +7 -13
- package/dist/context-menu/context-menu-options.interface.d.ts +2 -2
- package/dist/context-menu/context-menu-options.interface.js +1 -2
- package/dist/context-menu/context-menu-type.enum.js +2 -5
- package/dist/context-menu/index.d.ts +1 -1
- package/dist/context-menu/index.js +7 -13
- package/dist/index.d.ts +11 -0
- package/dist/index.js +11 -0
- package/dist/modal/files/__name@dasherize__.modals.ts.template +12 -0
- package/dist/modal/index.d.ts +1 -1
- package/dist/modal/index.js +4 -10
- package/package.json +44 -35
- package/CHANGELOG.md +0 -3
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { CommandType } from './command-type.enum.js';
|
|
2
|
+
import { CommonOptions } from '../common/index.js';
|
|
3
3
|
export interface CommandOptions extends CommonOptions {
|
|
4
4
|
strategy: CommandType;
|
|
5
5
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CommandType = void 0;
|
|
4
|
-
var CommandType;
|
|
1
|
+
export var CommandType;
|
|
5
2
|
(function (CommandType) {
|
|
6
3
|
CommandType["SLASH_COMMAND"] = "slash-command";
|
|
7
4
|
CommandType["TEXT_COMMAND"] = "text-command";
|
|
8
|
-
})(CommandType || (
|
|
5
|
+
})(CommandType || (CommandType = {}));
|
package/dist/command/index.d.ts
CHANGED
package/dist/command/index.js
CHANGED
|
@@ -1,26 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const command_type_enum_1 = require("./command-type.enum");
|
|
6
|
-
class CommandSchematicFactory extends common_1.CommonSchematicFactory {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(...arguments);
|
|
9
|
-
this.type = 'command';
|
|
10
|
-
}
|
|
1
|
+
import { CommonSchematicFactory } from '../common/index.js';
|
|
2
|
+
import { CommandType } from './command-type.enum.js';
|
|
3
|
+
class CommandSchematicFactory extends CommonSchematicFactory {
|
|
4
|
+
type = 'command';
|
|
11
5
|
generate(options) {
|
|
12
6
|
switch (options.strategy) {
|
|
13
|
-
case
|
|
7
|
+
case CommandType.TEXT_COMMAND:
|
|
14
8
|
this.templatePath = './files/text-command';
|
|
15
9
|
break;
|
|
16
|
-
case
|
|
10
|
+
case CommandType.SLASH_COMMAND:
|
|
17
11
|
this.templatePath = './files/slash-command';
|
|
18
12
|
break;
|
|
19
13
|
}
|
|
20
14
|
return super.generate(options);
|
|
21
15
|
}
|
|
22
16
|
}
|
|
23
|
-
function command(options) {
|
|
17
|
+
export function command(options) {
|
|
24
18
|
const commandFactory = new CommandSchematicFactory();
|
|
25
19
|
return commandFactory.create(options);
|
|
26
20
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/dist/common/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Rule, Source } from '@angular-devkit/schematics';
|
|
2
|
-
import { CommonOptions } from './common-options.interface';
|
|
3
|
-
export * from './common-options.interface';
|
|
2
|
+
import { CommonOptions } from './common-options.interface.js';
|
|
3
|
+
export * from './common-options.interface.js';
|
|
4
4
|
export declare class CommonSchematicFactory<T extends CommonOptions = CommonOptions> {
|
|
5
5
|
templatePath: string;
|
|
6
6
|
type: string;
|
package/dist/common/index.js
CHANGED
|
@@ -1,36 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class CommonSchematicFactory {
|
|
11
|
-
constructor() {
|
|
12
|
-
this.templatePath = './files';
|
|
13
|
-
this.type = 'service';
|
|
14
|
-
this.metadata = 'providers';
|
|
15
|
-
}
|
|
1
|
+
import { apply, applyTemplates, branchAndMerge, chain, filter, mergeWith, move, noop, SchematicsException, url } from '@angular-devkit/schematics';
|
|
2
|
+
import { mergeSourceRoot, ModuleDeclarator, ModuleFinder, NameParser } from '@nestjs/schematics';
|
|
3
|
+
import { strings } from '@angular-devkit/core';
|
|
4
|
+
import { join } from 'node:path';
|
|
5
|
+
export * from './common-options.interface.js';
|
|
6
|
+
export class CommonSchematicFactory {
|
|
7
|
+
templatePath = './files';
|
|
8
|
+
type = 'service';
|
|
9
|
+
metadata = 'providers';
|
|
16
10
|
create(options) {
|
|
17
11
|
options = this.transform(options);
|
|
18
|
-
return
|
|
12
|
+
return branchAndMerge(chain([mergeSourceRoot(options), this.addDeclarationToModule(options), mergeWith(this.generate(options))]));
|
|
19
13
|
}
|
|
20
14
|
generate(options) {
|
|
21
|
-
return (context) =>
|
|
22
|
-
options.spec ?
|
|
23
|
-
|
|
24
|
-
...
|
|
15
|
+
return (context) => apply(url(join(this.templatePath)), [
|
|
16
|
+
options.spec ? noop() : filter((path) => !path.endsWith('.spec.ts')),
|
|
17
|
+
applyTemplates({
|
|
18
|
+
...strings,
|
|
25
19
|
...options,
|
|
26
20
|
lowercase: (str) => str.toLowerCase()
|
|
27
21
|
}),
|
|
28
|
-
|
|
22
|
+
move(options.path ?? '')
|
|
29
23
|
])(context);
|
|
30
24
|
}
|
|
31
25
|
addDeclarationToModule(options) {
|
|
32
26
|
return (tree) => {
|
|
33
|
-
options.module = new
|
|
27
|
+
options.module = new ModuleFinder(tree).find({
|
|
34
28
|
name: options.name,
|
|
35
29
|
path: options.path
|
|
36
30
|
});
|
|
@@ -39,7 +33,7 @@ class CommonSchematicFactory {
|
|
|
39
33
|
}
|
|
40
34
|
const rawContent = tree.read(options.module);
|
|
41
35
|
const content = rawContent?.toString() ?? '';
|
|
42
|
-
const declarator = new
|
|
36
|
+
const declarator = new ModuleDeclarator();
|
|
43
37
|
tree.overwrite(options.module, declarator.declare(content, options));
|
|
44
38
|
return tree;
|
|
45
39
|
};
|
|
@@ -49,13 +43,12 @@ class CommonSchematicFactory {
|
|
|
49
43
|
target.metadata = this.metadata;
|
|
50
44
|
target.type = this.type;
|
|
51
45
|
if (target.name === null || target.name === undefined) {
|
|
52
|
-
throw new
|
|
46
|
+
throw new SchematicsException('Option (name) is required.');
|
|
53
47
|
}
|
|
54
|
-
const location = new
|
|
55
|
-
target.name =
|
|
56
|
-
target.path =
|
|
57
|
-
target.path = target.flat ? target.path :
|
|
48
|
+
const location = new NameParser().parse(target);
|
|
49
|
+
target.name = strings.dasherize(location.name);
|
|
50
|
+
target.path = strings.dasherize(location.path);
|
|
51
|
+
target.path = target.flat ? target.path : join(target.path, target.name);
|
|
58
52
|
return target;
|
|
59
53
|
}
|
|
60
54
|
}
|
|
61
|
-
exports.CommonSchematicFactory = CommonSchematicFactory;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { ComponentType } from './component-type.enum.js';
|
|
2
|
+
import { CommonOptions } from '../common/index.js';
|
|
3
3
|
export interface ComponentOptions extends CommonOptions {
|
|
4
4
|
strategy: ComponentType;
|
|
5
5
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ComponentType = void 0;
|
|
4
|
-
var ComponentType;
|
|
1
|
+
export var ComponentType;
|
|
5
2
|
(function (ComponentType) {
|
|
6
3
|
ComponentType["Button"] = "button";
|
|
7
4
|
ComponentType["Select"] = "select";
|
|
8
|
-
})(ComponentType || (
|
|
5
|
+
})(ComponentType || (ComponentType = {}));
|
package/dist/component/index.js
CHANGED
|
@@ -1,26 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const component_type_enum_1 = require("./component-type.enum");
|
|
6
|
-
class ComponentSchematicFactory extends common_1.CommonSchematicFactory {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(...arguments);
|
|
9
|
-
this.type = 'component';
|
|
10
|
-
}
|
|
1
|
+
import { CommonSchematicFactory } from '../common/index.js';
|
|
2
|
+
import { ComponentType } from './component-type.enum.js';
|
|
3
|
+
class ComponentSchematicFactory extends CommonSchematicFactory {
|
|
4
|
+
type = 'component';
|
|
11
5
|
generate(options) {
|
|
12
6
|
switch (options.strategy) {
|
|
13
|
-
case
|
|
7
|
+
case ComponentType.Button:
|
|
14
8
|
this.templatePath = './files/button';
|
|
15
9
|
break;
|
|
16
|
-
case
|
|
10
|
+
case ComponentType.Select:
|
|
17
11
|
this.templatePath = './files/select';
|
|
18
12
|
break;
|
|
19
13
|
}
|
|
20
14
|
return super.generate(options);
|
|
21
15
|
}
|
|
22
16
|
}
|
|
23
|
-
function component(options) {
|
|
17
|
+
export function component(options) {
|
|
24
18
|
const commandFactory = new ComponentSchematicFactory();
|
|
25
19
|
return commandFactory.create(options);
|
|
26
20
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { ContextMenuType } from './context-menu-type.enum.js';
|
|
2
|
+
import { CommonOptions } from '../common/index.js';
|
|
3
3
|
export interface ContextMenuOptions extends CommonOptions {
|
|
4
4
|
strategy: ContextMenuType;
|
|
5
5
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ContextMenuType = void 0;
|
|
4
|
-
var ContextMenuType;
|
|
1
|
+
export var ContextMenuType;
|
|
5
2
|
(function (ContextMenuType) {
|
|
6
3
|
ContextMenuType["Message"] = "message";
|
|
7
4
|
ContextMenuType["User"] = "user";
|
|
8
|
-
})(ContextMenuType || (
|
|
5
|
+
})(ContextMenuType || (ContextMenuType = {}));
|
|
@@ -1,26 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const context_menu_type_enum_1 = require("./context-menu-type.enum");
|
|
6
|
-
class ContextMenuSchematicFactory extends common_1.CommonSchematicFactory {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(...arguments);
|
|
9
|
-
this.type = 'context-menu';
|
|
10
|
-
}
|
|
1
|
+
import { ContextMenuType } from './context-menu-type.enum.js';
|
|
2
|
+
import { CommonSchematicFactory } from '../common/index.js';
|
|
3
|
+
class ContextMenuSchematicFactory extends CommonSchematicFactory {
|
|
4
|
+
type = 'context-menu';
|
|
11
5
|
generate(options) {
|
|
12
6
|
switch (options.strategy) {
|
|
13
|
-
case
|
|
7
|
+
case ContextMenuType.Message:
|
|
14
8
|
this.templatePath = './files/message-menu';
|
|
15
9
|
break;
|
|
16
|
-
case
|
|
10
|
+
case ContextMenuType.User:
|
|
17
11
|
this.templatePath = './files/user-menu';
|
|
18
12
|
break;
|
|
19
13
|
}
|
|
20
14
|
return super.generate(options);
|
|
21
15
|
}
|
|
22
16
|
}
|
|
23
|
-
function contextMenu(options) {
|
|
17
|
+
export function contextMenu(options) {
|
|
24
18
|
const contextMenuFactory = new ContextMenuSchematicFactory();
|
|
25
19
|
return contextMenuFactory.create(options);
|
|
26
20
|
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './command/command-options.interface.js';
|
|
2
|
+
export * from './command/command-type.enum.js';
|
|
3
|
+
export * from './command/index.js';
|
|
4
|
+
export * from './common/index.js';
|
|
5
|
+
export * from './component/component-options.interface.js';
|
|
6
|
+
export * from './component/component-type.enum.js';
|
|
7
|
+
export * from './component/index.js';
|
|
8
|
+
export * from './context-menu/context-menu-options.interface.js';
|
|
9
|
+
export * from './context-menu/context-menu-type.enum.js';
|
|
10
|
+
export * from './context-menu/index.js';
|
|
11
|
+
export * from './modal/index.js';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './command/command-options.interface.js';
|
|
2
|
+
export * from './command/command-type.enum.js';
|
|
3
|
+
export * from './command/index.js';
|
|
4
|
+
export * from './common/index.js';
|
|
5
|
+
export * from './component/component-options.interface.js';
|
|
6
|
+
export * from './component/component-type.enum.js';
|
|
7
|
+
export * from './component/index.js';
|
|
8
|
+
export * from './context-menu/context-menu-options.interface.js';
|
|
9
|
+
export * from './context-menu/context-menu-type.enum.js';
|
|
10
|
+
export * from './context-menu/index.js';
|
|
11
|
+
export * from './modal/index.js';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Injectable } from '@nestjs/common';
|
|
2
|
+
import { Context, Modal, ModalContext } from 'necord';
|
|
3
|
+
|
|
4
|
+
@Injectable()
|
|
5
|
+
export class <%= classify(name) %>Modals {
|
|
6
|
+
@Modal('<%= name %>')
|
|
7
|
+
public <%= name %>(@Ctx() [interaction]: ModalContext) {
|
|
8
|
+
return interaction.reply({
|
|
9
|
+
content: `Your fav pizza : ${interaction.fields.getTextInputValue('pizza')}`
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
}
|
package/dist/modal/index.d.ts
CHANGED
package/dist/modal/index.js
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const common_1 = require("../common");
|
|
5
|
-
class ModalSchematicFactory extends common_1.CommonSchematicFactory {
|
|
6
|
-
constructor() {
|
|
7
|
-
super(...arguments);
|
|
8
|
-
this.type = 'modal';
|
|
9
|
-
}
|
|
1
|
+
import { CommonSchematicFactory } from '../common/index.js';
|
|
2
|
+
class ModalSchematicFactory extends CommonSchematicFactory {
|
|
3
|
+
type = 'modal';
|
|
10
4
|
generate(options) {
|
|
11
5
|
return super.generate(options);
|
|
12
6
|
}
|
|
13
7
|
}
|
|
14
|
-
function modal(options) {
|
|
8
|
+
export function modal(options) {
|
|
15
9
|
const modalFactory = new ModalSchematicFactory();
|
|
16
10
|
return modalFactory.create(options);
|
|
17
11
|
}
|
package/package.json
CHANGED
|
@@ -1,34 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@necord/schematics",
|
|
3
3
|
"description": "A collection of schematics for Necord projects with NestJS",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"scripts": {
|
|
6
|
-
"build": "rimraf
|
|
7
|
+
"build": "rimraf dist tsconfig.build.tsbuildinfo && tsc -b tsconfig.build.json",
|
|
8
|
+
"typecheck": "tsc -b tsconfig.json --force",
|
|
7
9
|
"postbuild": "npm run copy:collection && npm run copy:lib",
|
|
8
10
|
"copy:collection": "copyfiles --up 1 src/collection.json dist && copyfiles --up 1 src/**/schema.json dist",
|
|
9
|
-
"copy:lib": "copyfiles --up 1 src/**/files
|
|
11
|
+
"copy:lib": "copyfiles --up 1 \"src/**/files/**/*\" \"src/**/files/*\" dist",
|
|
10
12
|
"prepublish:npm": "npm run build",
|
|
11
13
|
"publish:npm": "release-it",
|
|
12
14
|
"prepublish:dev": "npm run build",
|
|
13
15
|
"publish:dev": "npm publish --access public --tag dev",
|
|
14
16
|
"prepare": "husky",
|
|
15
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
16
|
-
"lint": "
|
|
17
|
-
"test": "
|
|
18
|
-
"test:watch": "
|
|
19
|
-
"test:cov": "
|
|
20
|
-
"test:ci": "
|
|
17
|
+
"format": "prettier --write \"{src,apps,libs,test}/**/*.ts\"",
|
|
18
|
+
"lint": "oxlint --type-aware --deny-warnings src test",
|
|
19
|
+
"test": "NODE_ENV=test NODE_OPTIONS=\"--require tsx/cjs\" vitest run",
|
|
20
|
+
"test:watch": "NODE_ENV=test NODE_OPTIONS=\"--require tsx/cjs\" vitest",
|
|
21
|
+
"test:cov": "NODE_ENV=test NODE_OPTIONS=\"--require tsx/cjs\" vitest run --coverage",
|
|
22
|
+
"test:ci": "NODE_ENV=test NODE_OPTIONS=\"--require tsx/cjs\" vitest run --coverage"
|
|
21
23
|
},
|
|
22
24
|
"schematics": "./dist/collection.json",
|
|
23
25
|
"funding": {
|
|
24
26
|
"type": "opencollective",
|
|
25
27
|
"url": "https://opencollective.com/necord"
|
|
26
28
|
},
|
|
27
|
-
"main": "dist/index.js",
|
|
28
|
-
"
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"default": "./dist/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./package.json": "./package.json"
|
|
37
|
+
},
|
|
29
38
|
"files": [
|
|
30
|
-
"dist
|
|
31
|
-
"*.md"
|
|
39
|
+
"dist"
|
|
32
40
|
],
|
|
33
41
|
"publishConfig": {
|
|
34
42
|
"access": "public"
|
|
@@ -45,33 +53,34 @@
|
|
|
45
53
|
"necord"
|
|
46
54
|
],
|
|
47
55
|
"dependencies": {
|
|
48
|
-
"@nestjs/schematics": "
|
|
56
|
+
"@nestjs/schematics": "12.0.0",
|
|
49
57
|
"rxjs": "7.8.2",
|
|
50
|
-
"tslib": "^2.8.1"
|
|
58
|
+
"tslib": "^2.8.1",
|
|
59
|
+
"typescript": "npm:@typescript/typescript6@6.0.2"
|
|
51
60
|
},
|
|
52
61
|
"devDependencies": {
|
|
53
|
-
"@commitlint/cli": "
|
|
54
|
-
"@commitlint/config-angular": "
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
59
|
-
"@types/jest": "^30.0.0",
|
|
60
|
-
"@types/node": "24.3.0",
|
|
62
|
+
"@commitlint/cli": "21.2.2",
|
|
63
|
+
"@commitlint/config-angular": "21.2.2",
|
|
64
|
+
"@release-it/conventional-changelog": "^12.0.0",
|
|
65
|
+
"@types/node": "26.4.0",
|
|
66
|
+
"@typescript/native": "npm:typescript@7.0.2",
|
|
67
|
+
"@vitest/coverage-v8": "4.1.11",
|
|
61
68
|
"copyfiles": "2.4.1",
|
|
62
|
-
"eslint": "^
|
|
63
|
-
"eslint-
|
|
64
|
-
"eslint-plugin-
|
|
65
|
-
"eslint-plugin-prettier": "^5.2.3",
|
|
66
|
-
"globals": "^16.0.0",
|
|
69
|
+
"eslint": "^10.0.0",
|
|
70
|
+
"eslint-plugin-perfectionist": "5.11.0",
|
|
71
|
+
"eslint-plugin-prettier": "5.5.6",
|
|
67
72
|
"husky": "9.1.7",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
73
|
+
"oxlint": "1.81.0",
|
|
74
|
+
"oxlint-tsgolint": "7.0.2001",
|
|
75
|
+
"prettier": "3.9.6",
|
|
76
|
+
"release-it": "21.0.2",
|
|
77
|
+
"rimraf": "6.1.3",
|
|
78
|
+
"tsx": "4.23.12",
|
|
79
|
+
"vitest": "4.1.11"
|
|
80
|
+
},
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": "^22.22.3 || ^24.15.0 || >=26.0.0",
|
|
83
|
+
"npm": ">=8.6.0"
|
|
75
84
|
},
|
|
76
85
|
"repository": {
|
|
77
86
|
"type": "git",
|
package/CHANGELOG.md
DELETED