pokemon-showdown/package.json
2021-11-18 19:11:21 -06:00

90 lines
2.5 KiB
JSON

{
"name": "pokemon-showdown",
"description": "The server for the Pokémon Showdown battle simulator",
"version": "0.11.7",
"main": ".sim-dist/index.js",
"dependencies": {
"@swc/core": "^1.2.61",
"preact": "^10.5.15",
"preact-render-to-string": "^5.1.19",
"probe-image-size": "^5.0.0",
"sockjs": "^0.3.21",
"ts-node": "^10.0.0"
},
"optionalDependencies": {
"better-sqlite3": "^7.1.0",
"brain.js": "^2.0.0-beta.2",
"cloud-env": "^0.2.3",
"githubhook": "^1.9.3",
"node-static": "^0.7.11",
"nodemailer": "^6.4.6",
"permessage-deflate": "^0.1.7",
"sql-template-strings": "^2.2.2",
"sqlite": "^3.0.6",
"sucrase": "^3.15.0"
},
"secretDependencies": {
"node-oom-heapdump": "^1.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "node pokemon-showdown start",
"build": "node build",
"tsc": "tsc",
"fast-lint": "eslint . --config .eslintrc-no-types.json --cache --cache-location .eslintcache-no-types --ext .js,.ts,.tsx",
"lint": "eslint . --cache --ext .js,.ts,.tsx",
"fix": "eslint . --cache --ext .js,.ts,.tsx --fix",
"full-lint": "eslint . --cache --ext .js,.ts --max-warnings 0",
"pretest": "npm run lint",
"test": "mocha",
"posttest": "npm run tsc",
"full-test": "npm run full-lint && npm run tsc && mocha --timeout 8000 --forbid-only -g \".*\""
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"bin": "./pokemon-showdown",
"homepage": "http://pokemonshowdown.com",
"repository": {
"type": "git",
"url": "https://github.com/smogon/pokemon-showdown.git"
},
"author": {
"name": "Guangcong Luo",
"email": "guangcongluo@gmail.com",
"url": "http://guangcongluo.com"
},
"contributors": [
{
"name": "Cathy J. Fitzpatrick",
"email": "cathy@cathyjf.com",
"url": "https://cathyjf.com"
},
{
"name": "Bill Meltsner",
"email": "bill@meltsner.com",
"url": "http://www.meltsner.com"
}
],
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.4.0",
"@types/cloud-env": "^0.2.2",
"@types/node": "^14.17.12",
"@types/node-static": "^0.7.7",
"@types/nodemailer": "^6.4.4",
"@types/sockjs": "^0.3.33",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"husky": "^4.3.0",
"mocha": "^8.2.0",
"smogon": "^1.4.5",
"typescript": "^4.5.2"
}
}