111 lines
2.8 KiB
JSON
111 lines
2.8 KiB
JSON
{
|
|
"name": "@neonjs/library",
|
|
"version": "0.0.1",
|
|
"description": "Discord API Wrapper",
|
|
"license": "MIT",
|
|
"main": "dist/src/index.js",
|
|
"types": "types/src/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 && node terser.js",
|
|
"commit": "cz",
|
|
"lint": "eslint --format=pretty src",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable",
|
|
"release": "semantic-release"
|
|
},
|
|
"dependencies": {
|
|
"abort-controller": "^3.0.0",
|
|
"async": "^3.2.0",
|
|
"form-data": "^4.0.0",
|
|
"node-fetch": "^2.6.1",
|
|
"tslib": "^2.3.0",
|
|
"ws": "^7.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^12.1.4",
|
|
"@commitlint/config-conventional": "^12.1.4",
|
|
"@commitlint/cz-commitlint": "^12.1.4",
|
|
"@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/async": "^3",
|
|
"@types/chai": "^4.2.19",
|
|
"@types/eslint": "^7.2.13",
|
|
"@types/mocha": "^8.2.2",
|
|
"@types/node": "^15.14.0",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@types/semantic-release": "^17.2.0",
|
|
"@types/sinon": "^10.0.2",
|
|
"@types/source-map-support": "^0.5.3",
|
|
"@types/ws": "^7.4.6",
|
|
"@typescript-eslint/eslint-plugin": "^4.28.1",
|
|
"@typescript-eslint/parser": "^4.28.1",
|
|
"@typescript-eslint/typescript-estree": "^4.28.1",
|
|
"chai": "^4.3.4",
|
|
"commitizen": "^4.2.4",
|
|
"eslint": "^7.29.0",
|
|
"eslint-formatter-pretty": "^4.1.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-unicorn": "^34.0.1",
|
|
"husky": "^7.0.0",
|
|
"inquirer": "^8.1.1",
|
|
"lint-staged": "^11.0.0",
|
|
"mocha": "^9.0.1",
|
|
"nyc": "^15.1.0",
|
|
"pinst": "^2.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^17.4.4",
|
|
"sinon": "^11.1.1",
|
|
"source-map-support": "^0.5.19",
|
|
"terser": "^5.7.1",
|
|
"ts-node": "^10.0.0",
|
|
"tsconfig-paths": "^3.9.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"optionalDependencies": {
|
|
"bufferutil": "^4.0.3",
|
|
"utf-8-validate": "^5.0.5",
|
|
"zlib-sync": "^0.1.7"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*": [
|
|
"yarn lint"
|
|
]
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "@commitlint/cz-commitlint"
|
|
}
|
|
}
|
|
}
|