command-parser/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2022-07-28 21:06:03 +02:00
{
2023-04-16 16:19:26 +02:00
"name": "@navy.gif/commandparser",
2023-05-12 16:25:36 +02:00
"version": "1.5.0",
2022-07-28 21:06:03 +02:00
"description": "Parser meant to parse commands and their options for discord bots",
"author": "Navy.gif",
"license": "MIT",
"private": false,
2023-04-13 19:18:40 +02:00
"repository": "",
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "./build/esm/index.d.ts",
2023-04-16 16:23:10 +02:00
"files": [
"build/**/*"
],
2023-04-13 19:18:40 +02:00
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/cjs/index.js",
"types": "./build/esm/index.d.ts"
}
},
2022-07-28 21:06:03 +02:00
"devDependencies": {
2023-02-12 16:20:05 +01:00
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
2022-07-29 13:17:01 +02:00
"@types/node": "^18.6.2",
2022-07-28 21:06:03 +02:00
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
2023-02-12 16:20:05 +01:00
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.2",
2022-07-28 21:06:03 +02:00
"typescript": "^4.7.4"
2022-07-29 17:48:03 +02:00
},
"scripts": {
2023-04-13 19:18:40 +02:00
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js",
2023-05-05 16:31:22 +02:00
"test": "yarn build && jest",
"release": "yarn build && yarn publish",
2023-02-12 16:20:05 +01:00
"lint": "eslint --fix"
2022-07-28 21:06:03 +02:00
}
2023-04-13 19:19:07 +02:00
}