forked from discordx-ts/discordx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.95 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
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
{
"name": "@discordx/koa",
"version": "0.0.0",
"private": false,
"description": "Use decorators with Koa with IOC",
"keywords": [
"koa",
"api",
"tsyringe",
"framework",
"decorators",
"typescript",
"bot",
"javascript",
"utilities",
"discordx",
"discord"
],
"homepage": "https://github.com/discordx-ts/discordx/tree/main/packages/koa#readme",
"bugs": {
"url": "https://github.com/discordx-ts/discordx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discordx-ts/discordx.git"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <[email protected]> (https://github.com/samarmeena)"
],
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"files": [
"build",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md",
"package.json"
],
"scripts": {
"build": "tsc && npm run build:cjs",
"build:changelog": "npx @discordx/changelog@latest --src src --match-tag koa-* --replace-tag koa-",
"build:cjs": "tsc --module CommonJs --outDir build/cjs && npm run postbuild:cjs",
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/koa",
"postbuild:cjs": "node ../../scripts/postbuild.mjs --path=build",
"type-check": "tsc --noemit"
},
"dependencies": {
"@discordx/di": "^3.0.2",
"@discordx/internal": "^1.0.2",
"tslib": "^2.4.1"
},
"devDependencies": {
"@discordx/importer": "^1.1.10",
"@koa/router": "^12.0.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.11.10",
"koa": "^2.13.4",
"typescript": "4.9.3"
},
"peerDependencies": {
"@koa/router": "*",
"koa": "*"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}