UNPKG

2.17 kBJSONView Raw
1{
2 "name": "@discordjs/collection",
3 "version": "0.7.0",
4 "description": "Utility data structure used in discord.js",
5 "scripts": {
6 "test": "jest --pass-with-no-tests",
7 "build": "tsup",
8 "lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
9 "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
10 "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
11 "prepublishOnly": "yarn build && yarn lint && yarn test",
12 "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'"
13 },
14 "main": "./dist/index.js",
15 "module": "./dist/index.mjs",
16 "types": "./dist/index.d.ts",
17 "exports": {
18 "import": "./dist/index.mjs",
19 "require": "./dist/index.js",
20 "types": "./dist/index.d.ts"
21 },
22 "directories": {
23 "lib": "src",
24 "test": "__tests__"
25 },
26 "files": [
27 "dist"
28 ],
29 "contributors": [
30 "Crawl <icrawltogo@gmail.com>",
31 "Amish Shah <amishshah.2k@gmail.com>",
32 "SpaceEEC <spaceeec@yahoo.com>",
33 "Vlad Frangu <kingdgrizzle@gmail.com>",
34 "Antonio Roman <kyradiscord@gmail.com>"
35 ],
36 "license": "Apache-2.0",
37 "keywords": [
38 "map",
39 "collection",
40 "utility"
41 ],
42 "repository": {
43 "type": "git",
44 "url": "git+https://github.com/discordjs/discord.js.git"
45 },
46 "bugs": {
47 "url": "https://github.com/discordjs/discord.js/issues"
48 },
49 "homepage": "https://discord.js.org",
50 "devDependencies": {
51 "@babel/core": "^7.18.2",
52 "@babel/preset-env": "^7.18.2",
53 "@babel/preset-typescript": "^7.17.12",
54 "@discordjs/ts-docgen": "^0.4.1",
55 "@types/jest": "^28.1.0",
56 "@types/node": "^16.11.38",
57 "@typescript-eslint/eslint-plugin": "^5.27.0",
58 "@typescript-eslint/parser": "^5.27.0",
59 "eslint": "^8.17.0",
60 "eslint-config-marine": "^9.4.1",
61 "eslint-config-prettier": "^8.5.0",
62 "eslint-plugin-import": "^2.26.0",
63 "jest": "^28.1.0",
64 "prettier": "^2.6.2",
65 "tsup": "^6.0.1",
66 "typedoc": "^0.22.17",
67 "typescript": "^4.7.3"
68 },
69 "engines": {
70 "node": ">=16.9.0"
71 },
72 "publishConfig": {
73 "access": "public"
74 }
75}
\No newline at end of file