meta files
This commit is contained in:
parent
c6aa17fff4
commit
8867da5463
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
A command parser for Discord bots. Should work with any JS library.
|
||||
|
||||
You're expected to implement a string -> abstraction resolver yourself and pass it to the parser.
|
10
package.json
10
package.json
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "commandparser",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.9",
|
||||
"description": "Parser meant to parse commands and their options for discord bots",
|
||||
"main": "index.ts",
|
||||
"main": "build/index.js",
|
||||
"author": "Navy.gif",
|
||||
"license": "MIT",
|
||||
"private": false,
|
||||
@ -12,5 +12,11 @@
|
||||
"@typescript-eslint/parser": "^5.31.0",
|
||||
"eslint": "^8.20.0",
|
||||
"typescript": "^4.7.4"
|
||||
},
|
||||
"files": [
|
||||
"build"
|
||||
],
|
||||
"scripts": {
|
||||
"release": "tsc && yarn publish"
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@
|
||||
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
||||
|
||||
/* Emit */
|
||||
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
||||
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
||||
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
||||
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
||||
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
||||
|
Loading…
Reference in New Issue
Block a user