small changes * hopefully fixes the deafening * spelling * new monkey matches * official mod-sdk download * R108 stubs
80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "lily",
|
|
"version": "0.0.2",
|
|
"description": "Lily's Integrated Logic Yoke",
|
|
"type": "module",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"xo": "^0.58.0",
|
|
"bc-stubs": "^108.0.0",
|
|
"bondage-club-mod-sdk": "^1.2.0",
|
|
"@types/tampermonkey": "^5.0.3"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE.",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"xo",
|
|
"xo-typescript"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": { "project": ["./jsconfig.json"] },
|
|
"plugins": ["@typescript-eslint"],
|
|
"globals": {"GM": true, "GM_info": true},
|
|
"rules": {
|
|
"@typescript-eslint/brace-style": "off",
|
|
"@typescript-eslint/comma-dangle": ["error", "only-multiline"],
|
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
"@typescript-eslint/member-delimiter-style": "off",
|
|
"@typescript-eslint/naming-convention": "off",
|
|
"@typescript-eslint/no-confusing-void-expression": ["error", {
|
|
"ignoreVoidOperator": true
|
|
}],
|
|
"@typescript-eslint/no-meaningless-void-operator": "off",
|
|
"@typescript-eslint/padding-line-between-statements": "off",
|
|
"@typescript-eslint/semi": "off",
|
|
"@typescript-eslint/space-before-function-paren": "off",
|
|
"@typescript-eslint/strict-boolean-expressions": ["error", {
|
|
"allowString": false,
|
|
"allowNumber": false,
|
|
"allowNullableObject": false
|
|
}],
|
|
"array-element-newline": "off",
|
|
"brace-style": "off",
|
|
"camelcase": "off",
|
|
"capitalized-comments": "off",
|
|
"curly": "off",
|
|
"max-params": "off",
|
|
"max-statements-per-line": "off",
|
|
"new-cap": "off",
|
|
"no-return-assign": "off",
|
|
"no-unused-expressions": "off",
|
|
"no-unused-vars": ["error", {
|
|
"argsIgnorePattern": "^_",
|
|
"destructuredArrayIgnorePattern": "^_"
|
|
}],
|
|
"no-void": "off",
|
|
"padding-line-between-statements": "off",
|
|
"object-curly-newline": "off",
|
|
"one-var": "off",
|
|
"one-var-declaration-per-line": "off",
|
|
"semi": "off",
|
|
"space-before-function-paren": "off",
|
|
"spaced-comment": "off",
|
|
"unicorn/no-array-for-each": "off",
|
|
"unicorn/no-array-reduce": "off",
|
|
"unicorn/prefer-module": "off",
|
|
"unicorn/prefer-top-level-await": "off",
|
|
"fake/fuck-commas": "off"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.d.ts"],
|
|
"rules": {
|
|
"no-unused-vars": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|