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.
framework/package.json
DroneCI b725faaca0 chore(release): 1.1.1
### [1.1.1](https://code.relms.dev/NeonJS/framework/compare/v1.1.0...v1.1.1) (2021-11-04)

### Bug Fixes

* made logger non-static ([b617aa0](b617aa00c2))

 [CI SKIP]
2021-11-04 23:11:40 +00:00

97 lines
2.4 KiB
JSON

{
"name": "@neonjs/framework",
"version": "1.1.1",
"description": "Discord.JS Slash Commands based framework",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://code.relms.dev/NeonJS/framework",
"bugs": "https://code.relms.dev/NeonJS/framework/issues",
"homepage": "https://code.relms.dev/NeonJS/framework/src/branch/master/README.md",
"keywords": [
"Discord",
"framework",
"discord.js",
"neon",
"neonjs"
],
"author": "Daryl Ronningen <relms@relms.dev>",
"maintainers": [],
"contributors": [],
"engines": {
"node": ">=16.*"
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"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": {
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.24.0",
"discord.js": "^13.3.1",
"lodash": "^4.17.21",
"node-fetch": "^3.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/cz-commitlint": "^14.1.0",
"@saithodev/semantic-release-gitea": "^2.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/eslint": "^7.28.2",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"@types/semantic-release": "^17.2.2",
"@types/source-map-support": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@typescript-eslint/typescript-estree": "^5.3.0",
"commitizen": "^4.2.4",
"eslint": "^8.1.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-unicorn": "^38.0.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^11.2.6",
"pinst": "^2.1.6",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"source-map-support": "^0.5.20",
"typescript": "^4.4.4"
},
"lint-staged": {
"src/**/*": [
"yarn lint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}