This repository has been archived by the owner on Jul 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "xierabot",
"version": "1.0.0",
"description": "A Discord Bot that focuses on PSO2 functions",
"main": "src/XieraMain.ts",
"scripts": {
"prestart": "run-script-os",
"prestart:win32": "for %f in (.\\xiera\\xiera.json, .\\xiera\\XieraStrings.json, .\\xiera\\data\\Events\\EventSearchIndex.json .\\xiera\\data\\DailyCrafting\\DailyCrafting.json) do xcopy %f .\\bin\\ /q /y",
"prestart:darwin:linux": "cp ./xiera/xiera.json ./xiera/XieraStrings.json ./xiera/data/Events/EventSearchIndex.json ./xiera/data/DailyCrafting/DailyCrafting.json ./bin/",
"start": "node bin/XieraMain",
"postinstall": "tsc",
"build": "tsc",
"test": "mocha -r ts-node/register 'test/test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alairon/XieraBot.git"
},
"author": "alairon",
"license": "MIT",
"bugs": {
"url": "https://github.com/alairon/XieraBot/issues"
},
"homepage": "https://github.com/alairon/XieraBot#readme",
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"fuse.js": "^6.4.6",
"luxon": "^1.26.0",
"run-script-os": "^1.1.5"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/expect": "^24.3.0",
"@types/luxon": "^1.26.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@types/request": "^2.48.5",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.0",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}