31 lines
968 B
JSON
31 lines
968 B
JSON
{
|
|
"name": "sharding-framework",
|
|
"version": "1.0.0",
|
|
"description": "Framework/template for quickly making a sharded program",
|
|
"main": "build/index.js",
|
|
"repository": "https://git.corgi.wtf/Navy.gif/sharding-framework.git",
|
|
"author": "Navy.gif <navydotgif@gmail.com>",
|
|
"license": "MIT",
|
|
"packageManager": "yarn@4.1.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"start": "yarn build && node --enable-source-maps build/index.js --shards 1 --respawn false"
|
|
},
|
|
"dependencies": {
|
|
"@navy.gif/commandparser": "^1.7.4",
|
|
"@navy.gif/logger": "^2.5.4",
|
|
"@types/node": "^20.11.30",
|
|
"dotenv": "^16.4.5",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.3",
|
|
"@babel/preset-env": "^7.24.3",
|
|
"@babel/preset-typescript": "^7.24.1",
|
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
"@typescript-eslint/parser": "^7.3.1",
|
|
"eslint": "^8.57.0"
|
|
}
|
|
}
|