core/package.json

38 lines
974 B
JSON
Raw Normal View History

2020-11-21 15:41:08 +00:00
{
"name": "@squeebot/core",
"version": "3.5.0",
2020-11-21 15:41:08 +00:00
"description": "Squeebot v3 core for the execution environment",
"main": "lib/index.js",
2021-10-07 15:29:59 +00:00
"types": "lib/index.d.ts",
2020-11-21 15:41:08 +00:00
"module": "lib/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc -w",
"prepare": "npm run build"
},
"repository": {
"type": "git",
2022-12-01 13:25:49 +00:00
"url": "git+https://git.icynet.eu/Squeebot/core.git"
2020-11-21 15:41:08 +00:00
},
"author": "Evert \"Diamond\" Prants <evert@lunasqu.ee>",
"license": "MIT",
"devDependencies": {
"@types/dateformat": "^3.0.1",
2021-09-03 17:23:22 +00:00
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.10",
"@types/semver": "^7.3.8",
"@types/tar": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"eslint": "^8.4.1",
2021-09-03 17:23:22 +00:00
"typescript": "^4.4.2"
2020-11-21 15:41:08 +00:00
},
"dependencies": {
2021-09-03 17:23:22 +00:00
"dateformat": "^4.5.1",
"fs-extra": "^10.0.0",
"reflect-metadata": "^0.1.13",
2021-09-03 17:23:22 +00:00
"semver": "^7.3.5",
"tar": "^6.1.11"
2020-11-21 15:41:08 +00:00
}
}