-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@m3rcena/weky",
"version": "14.25.1",
"description": "A fun npm package to play games within Discord with buttons!",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"release:prep": "npx tsx --tsconfig ./tsconfig.json ./tools/scripts/gen-version.ts",
"build:all": "npm run release:prep && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tools/config/tsconfig.cjs.json && tsc-alias -p tools/config/tsconfig.cjs.json",
"build:esm": "tsc -p tools/config/tsconfig.esm.json && tsc-alias -p tools/config/tsconfig.esm.json",
"build:types": "tsc -p tools/config/tsconfig.types.json && tsc-alias -p tools/config/tsconfig.types.json",
"typecheck": "npx tsc --noEmit"
},
"keywords": [
"weky",
"m3rcena",
"discord-games",
"discord-minigames",
"discord.js",
"discord.js-v14",
"djs",
"discord-buttons",
"discord-ui",
"discord-calculator",
"discord-snake",
"discord-2048",
"discord-fight",
"discord-entertainment",
"discord-interaction",
"typescript",
"slash-commands",
"game-engine"
],
"homepage": "https://github.com/M3rcena/m3rcena-weky#readme",
"bugs": {
"url": "https://github.com/M3rcena/m3rcena-weky/issues"
},
"author": {
"name": "M3rcena",
"url": "https://github.com/M3rcena"
},
"repository": {
"type": "git",
"url": "git+https://github.com/M3rcena/m3rcena-weky.git"
},
"dependencies": {
"chalk": "^5.6.2",
"discord.js": "^14.25.1",
"html-entities": "^2.6.0",
"mathjs": "^14.9.1",
"node-fetch": "^3.3.2",
"ofetch": "^1.5.1",
"string-width": "^8.1.0",
"util": "^0.12.5"
},
"devDependencies": {
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"copyfiles": "^2.4.1",
"eslint-plugin-unused-imports": "^4.3.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
},
"directories": {
"test": "test"
},
"license": "Apache-2.0",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">=20.0.0"
}
}