mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-13 15:38:12 -05:00
Reduce regex complexity in config by parsing a normal regex straight from config string value (including flags) BREAKING CHANGE: regex must now be enclosed in forward slashes, flags must be on regex value, and regexFlags property has been removed
111 lines
4.0 KiB
JSON
111 lines
4.0 KiB
JSON
{
|
|
"name": "redditcontextbot",
|
|
"version": "0.5.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no tests installed\" && exit 1",
|
|
"build": "tsc",
|
|
"start": "node src/index.js run",
|
|
"guard": "ts-auto-guard src/JsonConfig.ts",
|
|
"schema": "npm run -s schema-app & npm run -s schema-ruleset & npm run -s schema-rule & npm run -s schema-action & npm run -s schema-config",
|
|
"schema-app": "typescript-json-schema tsconfig.json JSONConfig --out src/Schema/App.json --required --tsNodeRegister --refs",
|
|
"schema-ruleset": "typescript-json-schema tsconfig.json RuleSetJson --out src/Schema/RuleSet.json --required --tsNodeRegister --refs",
|
|
"schema-rule": "typescript-json-schema tsconfig.json RuleJson --out src/Schema/Rule.json --required --tsNodeRegister --refs",
|
|
"schema-action": "typescript-json-schema tsconfig.json ActionJson --out src/Schema/Action.json --required --tsNodeRegister --refs",
|
|
"schema-config": "typescript-json-schema tsconfig.json OperatorJsonConfig --out src/Schema/OperatorConfig.json --required --tsNodeRegister --refs",
|
|
"schemaNotWorking": "./node_modules/.bin/ts-json-schema-generator -f tsconfig.json -p src/JsonConfig.ts -t JSONConfig --out src/Schema/vegaSchema.json",
|
|
"circular": "madge --circular --extensions ts src/index.ts",
|
|
"circular-graph": "madge --image graph.svg --circular --extensions ts src/index.ts"
|
|
},
|
|
"engines": {
|
|
"node": ">=15"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@awaitjs/express": "^0.8.0",
|
|
"@stdlib/regexp-regexp": "^0.0.6",
|
|
"ajv": "^7.2.4",
|
|
"async": "^3.2.0",
|
|
"autolinker": "^3.14.3",
|
|
"body-parser": "^1.19.0",
|
|
"cache-manager": "^3.4.4",
|
|
"cache-manager-redis-store": "^2.0.0",
|
|
"commander": "^8.0.0",
|
|
"cookie-parser": "^1.3.5",
|
|
"dayjs": "^1.10.5",
|
|
"deepmerge": "^4.2.2",
|
|
"delimiter-stream": "^3.0.1",
|
|
"ejs": "^3.1.6",
|
|
"env-cmd": "^10.1.0",
|
|
"es6-error": "^4.1.1",
|
|
"express": "^4.17.1",
|
|
"express-session": "^1.17.2",
|
|
"express-session-cache-manager": "^1.0.2",
|
|
"express-socket.io-session": "^1.3.5",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"fuse.js": "^6.4.6",
|
|
"got": "^11.8.2",
|
|
"he": "^1.2.0",
|
|
"http-proxy": "^1.18.1",
|
|
"js-yaml": "^4.1.0",
|
|
"json5": "^2.2.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lodash": "^4.17.21",
|
|
"lru-cache": "^6.0.0",
|
|
"monaco-editor": "^0.27.0",
|
|
"mustache": "^4.2.0",
|
|
"node-fetch": "^2.6.1",
|
|
"normalize-url": "^6.1.0",
|
|
"object-hash": "^2.2.0",
|
|
"p-event": "^4.2.0",
|
|
"passport": "^0.4.1",
|
|
"passport-custom": "^1.1.1",
|
|
"passport-jwt": "^4.0.0",
|
|
"pretty-print-json": "^1.0.3",
|
|
"safe-stable-stringify": "^1.1.1",
|
|
"snoostorm": "^1.5.2",
|
|
"snoowrap": "^1.23.0",
|
|
"socket.io": "^4.1.3",
|
|
"tcp-port-used": "^1.0.2",
|
|
"triple-beam": "^1.3.0",
|
|
"typescript": "^4.3.4",
|
|
"webhook-discord": "^3.7.7",
|
|
"winston": "FoxxMD/winston#fbab8de969ecee578981c77846156c7f43b5f01e",
|
|
"winston-daily-rotate-file": "^4.5.5",
|
|
"winston-duplex": "^0.1.1",
|
|
"winston-transport": "^4.4.0",
|
|
"zlib": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node14": "^1.0.0",
|
|
"@types/async": "^3.2.7",
|
|
"@types/cache-manager": "^3.4.2",
|
|
"@types/cache-manager-redis-store": "^2.0.0",
|
|
"@types/cookie-parser": "^1.4.2",
|
|
"@types/express": "^4.17.13",
|
|
"@types/express-session": "^1.17.4",
|
|
"@types/express-socket.io-session": "^1.3.6",
|
|
"@types/he": "^1.1.1",
|
|
"@types/http-proxy": "^1.17.7",
|
|
"@types/js-yaml": "^4.0.1",
|
|
"@types/jsonwebtoken": "^8.5.4",
|
|
"@types/lodash": "^4.14.171",
|
|
"@types/lru-cache": "^5.1.1",
|
|
"@types/memory-cache": "^0.2.1",
|
|
"@types/mustache": "^4.1.1",
|
|
"@types/node": "^15.6.1",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@types/object-hash": "^2.1.0",
|
|
"@types/passport": "^1.0.7",
|
|
"@types/passport-jwt": "^3.0.6",
|
|
"@types/tcp-port-used": "^1.0.0",
|
|
"@types/triple-beam": "^1.3.2",
|
|
"ts-auto-guard": "*",
|
|
"ts-json-schema-generator": "^0.93.0",
|
|
"typescript-json-schema": "^0.50.1"
|
|
}
|
|
}
|