@promethean-os/cephalon
Version:
A proof-of-concept basic bot using @discordjs/voice
41 lines (40 loc) • 881 B
JSON
{
"name": "@promethean/cephalon",
"root": "packages/cephalon",
"sourceRoot": "packages/cephalon/src",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"command": "tsc -b",
"cwd": "packages/cephalon"
},
"outputs": ["{projectRoot}/dist"]
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"command": "tsc -p tsconfig.json --noEmit",
"cwd": "packages/cephalon"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": "ava",
"cwd": "{projectRoot}",
"env": {
"AVA_PROJECT_ROOT": "."
}
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "eslint .",
"cwd": "packages/cephalon"
}
}
},
"tags": ["scope:packages"]
}