151 lines
3.5 KiB
JSON
151 lines
3.5 KiB
JSON
{
|
|
"name": "@argonjs/library",
|
|
"version": "0.0.1",
|
|
"description": "Discord API Wrapper",
|
|
"main": "dist/index.js",
|
|
"repository": "https://code.relms.dev/ArgonJS/library.git",
|
|
"bugs": "https://code.relms.dev/ArgonJS/library/issues",
|
|
"author": "Daryl Ronningen <relms@relms.dev>",
|
|
"maintainers": [],
|
|
"contributors": [],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"commit": "cz",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable",
|
|
"release": "semantic-release"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^2.3.0"
|
|
},
|
|
"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",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-strip": "^2.0.1",
|
|
"@rollup/plugin-typescript": "^8.2.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/chai": "^4.2.19",
|
|
"@types/eslint": "^7.2.13",
|
|
"@types/mocha": "^8.2.2",
|
|
"@types/node": "^15.14.0",
|
|
"@types/rollup-plugin-progress": "^1.1.0",
|
|
"@types/rollup-plugin-size-snapshot": "^0.10.0",
|
|
"@types/semantic-release": "^17",
|
|
"@types/sinon": "^10.0.2",
|
|
"@types/source-map-support": "^0.5.3",
|
|
"@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",
|
|
"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",
|
|
"rollup": "^2.52.7",
|
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
"rollup-plugin-multi-input": "^1.3.1",
|
|
"rollup-plugin-progress": "^1.1.2",
|
|
"rollup-plugin-size-snapshot": "^0.12.0",
|
|
"rollup-plugin-sizes": "^1.0.4",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-visualizer": "^5.5.1",
|
|
"semantic-release": "^17.4.4",
|
|
"sinon": "^11.1.1",
|
|
"source-map-support": "^0.5.19",
|
|
"ts-node": "^10.0.0",
|
|
"tsconfig-paths": "^3.9.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true,
|
|
"commonjs": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
"tab",
|
|
{
|
|
"SwitchCase": 1,
|
|
"CallExpression": {
|
|
"arguments": 1
|
|
}
|
|
}
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"eol-last": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"default-case": "error",
|
|
"comma-dangle": [
|
|
"error",
|
|
"always-multiline"
|
|
],
|
|
"no-case-declarations": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
|
},
|
|
"reportUnusedDisableDirectives": true
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*": [
|
|
"yarn lint"
|
|
]
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "@commitlint/cz-commitlint"
|
|
}
|
|
}
|
|
}
|