-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@locon213/unicord",
"version": "0.1.4",
"description": "Universal Discord SDK & Framework - Enhanced TypeScript library for Discord bots and OAuth2 integration",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Locon213 <andrei070220111@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Locon213/UniCord.git"
},
"keywords": [
"discord",
"bot",
"api",
"sdk",
"framework",
"typescript",
"oauth2",
"slash-commands",
"components",
"discord.js-alternative"
],
"homepage": "https://github.com/Locon213/UniCord#readme",
"bugs": {
"url": "https://github.com/Locon213/UniCord/issues"
},
"scripts": {
"build": "tsup",
"build:iife": "tsup --format iife",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"release": "npm version patch && git push --follow-tags",
"prepare": "npm run build",
"docker:build": "docker build -t unicord:latest .",
"docker:run": "docker run -d --name unicord-bot unicord:latest",
"docker:compose": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:restart": "docker-compose restart",
"docker:clean": "docker-compose down -v --remove-orphans",
"docker:rebuild": "docker-compose down && docker-compose build --no-cache && docker-compose up -d"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^22.10.6",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"license": "MIT"
}