@discordjs/collection
Advanced tools
Comparing version 0.6.0-dev.1649937819-b01f414 to 0.6.0
@@ -7,3 +7,2 @@ "use strict"; | ||
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; | ||
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true }); | ||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); | ||
@@ -14,15 +13,11 @@ var __export = (target, all) => { | ||
}; | ||
var __reExport = (target, module2, copyDefault, desc) => { | ||
if (module2 && typeof module2 === "object" || typeof module2 === "function") { | ||
for (let key of __getOwnPropNames(module2)) | ||
if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default")) | ||
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable }); | ||
var __copyProps = (to, from, except, desc) => { | ||
if (from && typeof from === "object" || typeof from === "function") { | ||
for (let key of __getOwnPropNames(from)) | ||
if (!__hasOwnProp.call(to, key) && key !== except) | ||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); | ||
} | ||
return target; | ||
return to; | ||
}; | ||
var __toCommonJS = /* @__PURE__ */ ((cache) => { | ||
return (module2, temp) => { | ||
return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp); | ||
}; | ||
})(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0); | ||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); | ||
var __publicField = (obj, key, value) => { | ||
@@ -39,2 +34,3 @@ __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value); | ||
}); | ||
module.exports = __toCommonJS(src_exports); | ||
var _Collection = class extends Map { | ||
@@ -352,3 +348,2 @@ ensure(key, defaultValueGenerator) { | ||
var src_default = Collection; | ||
module.exports = __toCommonJS(src_exports); | ||
// Annotate the CommonJS export names for ESM import in node: | ||
@@ -355,0 +350,0 @@ 0 && (module.exports = { |
149
package.json
{ | ||
"name": "@discordjs/collection", | ||
"version": "0.6.0-dev.1649937819-b01f414", | ||
"description": "Utility data structure used in discord.js", | ||
"scripts": { | ||
"test": "jest --pass-with-no-tests", | ||
"build": "tsup", | ||
"lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts", | ||
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix", | ||
"docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs", | ||
"prepublishOnly": "yarn build && yarn lint && yarn test", | ||
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'" | ||
}, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"directories": { | ||
"lib": "src", | ||
"test": "__tests__" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"contributors": [ | ||
"Crawl <icrawltogo@gmail.com>", | ||
"Amish Shah <amishshah.2k@gmail.com>", | ||
"SpaceEEC <spaceeec@yahoo.com>", | ||
"Vlad Frangu <kingdgrizzle@gmail.com>", | ||
"Antonio Roman <kyradiscord@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"keywords": [ | ||
"map", | ||
"collection", | ||
"utility" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/discordjs/discord.js.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/discordjs/discord.js/issues" | ||
}, | ||
"homepage": "https://discord.js.org", | ||
"devDependencies": { | ||
"@babel/core": "^7.17.2", | ||
"@babel/preset-env": "^7.16.11", | ||
"@babel/preset-typescript": "^7.16.7", | ||
"@discordjs/ts-docgen": "^0.3.4", | ||
"@types/jest": "^27.4.0", | ||
"@types/node": "^16.11.24", | ||
"@typescript-eslint/eslint-plugin": "^5.11.0", | ||
"@typescript-eslint/parser": "^5.11.0", | ||
"eslint": "^8.9.0", | ||
"eslint-config-marine": "^9.3.2", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^27.5.1", | ||
"prettier": "^2.5.1", | ||
"tsup": "^5.11.13", | ||
"typedoc": "^0.22.11", | ||
"typescript": "^4.5.5" | ||
}, | ||
"engines": { | ||
"node": ">=16.9.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"stableVersion": "0.6.0-dev" | ||
} | ||
"name": "@discordjs/collection", | ||
"version": "0.6.0", | ||
"description": "Utility data structure used in discord.js", | ||
"scripts": { | ||
"test": "jest --pass-with-no-tests", | ||
"build": "tsup", | ||
"lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts", | ||
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix", | ||
"docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs", | ||
"prepublishOnly": "yarn build && yarn lint && yarn test", | ||
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'" | ||
}, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"directories": { | ||
"lib": "src", | ||
"test": "__tests__" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"contributors": [ | ||
"Crawl <icrawltogo@gmail.com>", | ||
"Amish Shah <amishshah.2k@gmail.com>", | ||
"SpaceEEC <spaceeec@yahoo.com>", | ||
"Vlad Frangu <kingdgrizzle@gmail.com>", | ||
"Antonio Roman <kyradiscord@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"keywords": [ | ||
"map", | ||
"collection", | ||
"utility" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/discordjs/discord.js.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/discordjs/discord.js/issues" | ||
}, | ||
"homepage": "https://discord.js.org", | ||
"devDependencies": { | ||
"@babel/core": "^7.17.9", | ||
"@babel/preset-env": "^7.16.11", | ||
"@babel/preset-typescript": "^7.16.7", | ||
"@discordjs/ts-docgen": "^0.4.1", | ||
"@types/jest": "^27.4.1", | ||
"@types/node": "^16.11.27", | ||
"@typescript-eslint/eslint-plugin": "^5.19.0", | ||
"@typescript-eslint/parser": "^5.19.0", | ||
"eslint": "^8.13.0", | ||
"eslint-config-marine": "^9.4.1", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"jest": "^27.5.1", | ||
"prettier": "^2.6.2", | ||
"tsup": "^5.12.5", | ||
"typedoc": "^0.22.15", | ||
"typescript": "^4.6.3" | ||
}, | ||
"engines": { | ||
"node": ">=16.9.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
131098
8
1100