-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.78 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
{
"name": "cordo",
"version": "2.10.1",
"description": "A framework for handling complex discord api interactions",
"exports": {
".": "./src/index.ts",
"./core": "./src/core/index.ts",
"./components": "./src/components/index.ts",
"./errors": "./src/errors/index.ts",
"./functions": "./src/functions/index.ts",
"./plugin/djs": "./src/plugin/djs.ts",
"./plugin/express": "./src/plugin/express.ts",
"./plugin/hono": "./src/plugin/hono.ts"
},
"files": [
"src/*",
"tsconfig.json"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore src/**/*.ts",
"tunnel": "cloudflared tunnel --config ~/.cloudflared/config.yml run fsb",
"dev": "tsc && node --trace-warnings ./build/index.js",
"test": "echo \"Error: no tests specified\" && exit 0",
"prepub": "npm run lint && npm run build && npm run test && npm pub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maanex/cordo.git"
},
"author": "Andreas May <andreas@maanex.me>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Maanex/cordo/issues"
},
"homepage": "https://github.com/Maanex/cordo#readme",
"dependencies": {
"@types/bun": "^1.2.10",
"axios": "^0.21.4",
"defu": "^6.1.4",
"discord-api-types": "^0.38.42",
"discord-interactions": "^2.4.1",
"type-fest": "^4.34.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"discord.js": "^14.18.0",
"eslint": "^7.30.0",
"eslint-config-maanex": "^1.1.2",
"express": "^4.17.3",
"hono": "^4.7.7",
"reflect-metadata": "^0.1.13",
"typescript": "^5.7.3"
}
}