2021-07-03 03:01:50 +00:00
|
|
|
{
|
2021-07-04 01:32:01 +00:00
|
|
|
"name": "@neonjs/library",
|
2021-07-03 03:01:50 +00:00
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Discord API Wrapper",
|
2021-07-04 01:32:01 +00:00
|
|
|
"license": "MIT",
|
2021-07-06 18:18:38 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2021-07-05 15:01:44 +00:00
|
|
|
"repository": "https://code.relms.dev/NeonJS/library",
|
2021-07-04 01:32:01 +00:00
|
|
|
"bugs": "https://code.relms.dev/NeonJS/library/issues",
|
2021-07-05 15:01:44 +00:00
|
|
|
"homepage": "https://code.relms.dev/NeonJS/library/src/branch/master/README.md",
|
2021-07-04 01:32:01 +00:00
|
|
|
"keywords": [
|
|
|
|
"Discord",
|
|
|
|
"wrapper",
|
|
|
|
"api",
|
|
|
|
"discord.js",
|
|
|
|
"argon",
|
|
|
|
"argonjs"
|
|
|
|
],
|
2021-07-03 03:01:50 +00:00
|
|
|
"author": "Daryl Ronningen <relms@relms.dev>",
|
|
|
|
"maintainers": [],
|
|
|
|
"contributors": [],
|
2021-07-04 01:32:01 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=14.*"
|
|
|
|
},
|
|
|
|
"files": [
|
2021-07-05 22:06:11 +00:00
|
|
|
"dist/*"
|
2021-07-04 01:32:01 +00:00
|
|
|
],
|
2021-07-03 03:01:50 +00:00
|
|
|
"scripts": {
|
2021-07-06 18:18:38 +00:00
|
|
|
"build": "tsc",
|
2021-07-03 03:01:50 +00:00
|
|
|
"commit": "cz",
|
2021-07-05 22:55:30 +00:00
|
|
|
"lint": "eslint --format=pretty src",
|
2021-07-17 03:00:35 +00:00
|
|
|
"lint:fix": "eslint --format=pretty src --fix",
|
2021-07-03 03:01:50 +00:00
|
|
|
"postinstall": "husky install",
|
|
|
|
"prepublishOnly": "pinst --disable",
|
|
|
|
"postpublish": "pinst --enable",
|
|
|
|
"release": "semantic-release"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-07-07 17:22:53 +00:00
|
|
|
"@sapphire/async-queue": "^1.1.4",
|
2021-07-06 16:50:06 +00:00
|
|
|
"abort-controller": "^3.0.0",
|
2021-08-07 22:05:20 +00:00
|
|
|
"cache-manager": "^3.4.4",
|
|
|
|
"cache-manager-ioredis": "^2.1.0",
|
2021-07-13 05:01:56 +00:00
|
|
|
"fast-zlib": "^2.0.1",
|
2021-07-06 16:50:06 +00:00
|
|
|
"form-data": "^4.0.0",
|
2021-08-07 22:05:20 +00:00
|
|
|
"ioredis": "^4.27.7",
|
2021-07-06 19:20:34 +00:00
|
|
|
"lodash": "^4.17.21",
|
2021-07-05 22:06:11 +00:00
|
|
|
"node-fetch": "^2.6.1",
|
2021-08-07 22:05:20 +00:00
|
|
|
"ws": "^8.0.0"
|
2021-07-03 03:01:50 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-08-07 22:05:20 +00:00
|
|
|
"@commitlint/cli": "^13.1.0",
|
|
|
|
"@commitlint/config-conventional": "^13.1.0",
|
|
|
|
"@commitlint/cz-commitlint": "^13.1.0",
|
2021-07-03 03:01:50 +00:00
|
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
|
|
"@saithodev/semantic-release-gitea": "^2.1.0",
|
|
|
|
"@semantic-release/changelog": "^5.0.1",
|
|
|
|
"@semantic-release/commit-analyzer": "^8.0.1",
|
|
|
|
"@semantic-release/git": "^9.0.0",
|
|
|
|
"@semantic-release/npm": "^7.1.3",
|
|
|
|
"@semantic-release/release-notes-generator": "^9.0.3",
|
2021-08-07 22:05:20 +00:00
|
|
|
"@types/cache-manager": "^3.4.2",
|
|
|
|
"@types/cache-manager-ioredis": "^2.0.2",
|
2021-07-14 16:03:08 +00:00
|
|
|
"@types/chai": "^4.2.21",
|
|
|
|
"@types/eslint": "^7.28.0",
|
2021-08-07 22:05:20 +00:00
|
|
|
"@types/ioredis": "^4.26.7",
|
|
|
|
"@types/lodash": "^4.14.172",
|
|
|
|
"@types/mocha": "^9.0.0",
|
|
|
|
"@types/node": "^16.4.13",
|
|
|
|
"@types/node-fetch": "^2.5.12",
|
2021-07-14 16:03:08 +00:00
|
|
|
"@types/semantic-release": "^17.2.1",
|
2021-07-03 03:01:50 +00:00
|
|
|
"@types/sinon": "^10.0.2",
|
2021-07-14 16:03:08 +00:00
|
|
|
"@types/source-map-support": "^0.5.4",
|
2021-08-07 22:05:20 +00:00
|
|
|
"@types/ws": "^7.4.7",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.29.0",
|
|
|
|
"@typescript-eslint/parser": "^4.29.0",
|
|
|
|
"@typescript-eslint/typescript-estree": "^4.29.0",
|
2021-07-03 03:01:50 +00:00
|
|
|
"chai": "^4.3.4",
|
|
|
|
"commitizen": "^4.2.4",
|
2021-08-07 22:05:20 +00:00
|
|
|
"eslint": "^7.32.0",
|
2021-07-03 03:01:50 +00:00
|
|
|
"eslint-formatter-pretty": "^4.1.0",
|
2021-08-07 22:05:20 +00:00
|
|
|
"eslint-plugin-unicorn": "^35.0.0",
|
2021-07-14 16:03:08 +00:00
|
|
|
"husky": "^7.0.1",
|
|
|
|
"inquirer": "^8.1.2",
|
2021-08-07 22:05:20 +00:00
|
|
|
"lint-staged": "^11.1.2",
|
|
|
|
"mocha": "^9.0.3",
|
2021-07-03 03:01:50 +00:00
|
|
|
"nyc": "^15.1.0",
|
2021-07-14 16:03:08 +00:00
|
|
|
"pinst": "^2.1.6",
|
2021-07-03 03:01:50 +00:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"semantic-release": "^17.4.4",
|
2021-08-07 22:05:20 +00:00
|
|
|
"sinon": "^11.1.2",
|
2021-07-03 03:01:50 +00:00
|
|
|
"source-map-support": "^0.5.19",
|
2021-07-14 16:03:08 +00:00
|
|
|
"ts-node": "^10.1.0",
|
|
|
|
"tsconfig-paths": "^3.10.1",
|
2021-07-03 03:01:50 +00:00
|
|
|
"typescript": "^4.3.5"
|
|
|
|
},
|
2021-07-05 22:06:11 +00:00
|
|
|
"optionalDependencies": {
|
|
|
|
"bufferutil": "^4.0.3",
|
2021-07-13 05:01:56 +00:00
|
|
|
"utf-8-validate": "^5.0.5"
|
2021-07-03 03:01:50 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"src/**/*": [
|
|
|
|
"yarn lint"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"commitlint": {
|
|
|
|
"extends": [
|
|
|
|
"@commitlint/config-conventional"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "@commitlint/cz-commitlint"
|
|
|
|
}
|
2021-08-07 19:43:31 +00:00
|
|
|
},
|
|
|
|
"packageManager": "yarn@3.0.0"
|
2021-07-05 22:55:30 +00:00
|
|
|
}
|