LILY/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2024-07-10 01:32:43 +00:00
{
"name": "lily",
"version": "0.0.1",
"description": "Lily's Integrated Logic Yoke",
"type": "module",
"devDependencies": {
"xo": "^0.58.0",
"bc-stubs": "^105.0.0",
"bondage-club-mod-sdk": "^1.2.0",
"@types/tampermonkey": "^5.0.3"
},
"license": "SEE LICENSE IN LICENSE.",
"xo": {
"env": [
"browser",
"node"
],
"globals": ["GM", "GM_info"],
"rules": {
"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"
}
}
}