Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
library/package.json

116 lines
3 KiB
JSON

{
"name": "@neonjs/library",
"version": "0.0.1",
"description": "Discord API Wrapper",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://code.relms.dev/NeonJS/library",
"bugs": "https://code.relms.dev/NeonJS/library/issues",
"homepage": "https://code.relms.dev/NeonJS/library/src/branch/master/README.md",
"keywords": [
"Discord",
"wrapper",
"api",
"discord.js",
"argon",
"argonjs"
],
"author": "Daryl Ronningen <relms@relms.dev>",
"maintainers": [],
"contributors": [],
"engines": {
"node": ">=14.*"
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"commit": "cz",
"lint": "eslint --format=pretty src",
"lint:fix": "eslint --format=pretty src --fix",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "semantic-release"
},
"dependencies": {
"@sapphire/async-queue": "^1.1.4",
"abort-controller": "^3.0.0",
"cache-manager": "^3.4.4",
"cache-manager-ioredis": "^2.1.0",
"fast-zlib": "^2.0.1",
"form-data": "^4.0.0",
"ioredis": "^4.27.7",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"ws": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/cz-commitlint": "^13.1.0",
"@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",
"@types/cache-manager": "^3.4.2",
"@types/cache-manager-ioredis": "^2.0.2",
"@types/chai": "^4.2.21",
"@types/eslint": "^7.28.0",
"@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",
"@types/semantic-release": "^17.2.1",
"@types/sinon": "^10.0.2",
"@types/source-map-support": "^0.5.4",
"@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",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-unicorn": "^35.0.0",
"husky": "^7.0.1",
"inquirer": "^8.1.2",
"lint-staged": "^11.1.2",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"pinst": "^2.1.6",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"sinon": "^11.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.5"
},
"lint-staged": {
"src/**/*": [
"yarn lint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "yarn@3.0.0"
}