Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
add sinusbot-scripting-engine
Browse files Browse the repository at this point in the history
  • Loading branch information
AFink committed Mar 6, 2021
1 parent 28fa235 commit 5d55b44
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
env:
browser: true
commonjs: true
es6: true
extends: 'eslint:recommended'
globals:
registerPlugin: readonly
parserOptions:
ecmaVersion: 2018
rules: {}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
package-lock.json
.vscode

# ignore built-in scripts
Expand Down
12 changes: 12 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"checkJs": true,
"target": "es2018",
"types" : ["sinusbot-scripting-engine"]
},
"typeAcquisition": {"enable": false, "include": ["sinusbot-scripting-engine"]},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "sinusbot-support",
"version": "1.0.0",
"description": "Script originally wrote by [irgendwr](https://github.com/irgendwr/sinusbot-scripts).",
"main": "discord-sinusbot.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AFink/sinusbot-support.git"
},
"author": "Andreas Fink <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AFink/sinusbot-support/issues"
},
"homepage": "https://github.com/AFink/sinusbot-support#readme",
"devDependencies": {
"sinusbot-scripting-engine": "^1.0.18"
}
}

0 comments on commit 5d55b44

Please sign in to comment.