This repository has been archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 2.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@itsmapleleaf/gatekeeper",
"description": "a slash command and interaction framework for discord.js",
"author": "itsmapleleaf",
"version": "0.9.1",
"types": "./dist/main.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
}
},
"files": [
"dist"
],
"repository": "https://github.com/itsMapleLeaf/gatekeeper",
"homepage": "https://github.com/itsMapleLeaf/gatekeeper#readme",
"bugs": "https://github.com/itsMapleLeaf/gatekeeper/issues",
"keywords": [
"discord",
"discord.js",
"slash",
"command",
"commands",
"interaction",
"message",
"component",
"framework",
"bot",
"react",
"reactive",
"declarative"
],
"sideEffects": false,
"scripts": {
"dev": "npm-run-all --parallel --print-label --race dev-*",
"dev-playground": "pnpm -C playground run dev",
"dev-build": "pnpm build -- --watch",
"build": "tsup-node",
"typecheck": "tsc --noEmit",
"test": "ava",
"test-watch": "pnpm test -- --watch",
"lint": "eslint --ext js,ts,tsx .",
"lint-fix": "npm run lint -- --fix",
"ci": "npm-run-all --parallel --print-label --continue-on-error build test lint && pnpm run typecheck",
"format": "prettier --write .",
"docs": "typedoc",
"release": "bash ./scripts/release.sh"
},
"dependencies": {
"chalk": "^4.1.2",
"fast-glob": "^3.2.7"
},
"peerDependencies": {
"discord.js": ">=13"
},
"devDependencies": {
"@itsmapleleaf/configs": "1.0.1",
"@types/node": "16.11.10",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"ava": "^4.0.0-rc.1",
"discord.js": "^13.3.1",
"esbuild": "0.14.0",
"esbuild-node-loader": "^0.6.3",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.0",
"release-it": "14.11.8",
"tsup": "^5.10.0",
"typedoc": "0.22.10",
"typescript": "4.5.2"
},
"prettier": "@itsmapleleaf/configs/prettier",
"eslintConfig": {
"extends": [
"./node_modules/@itsmapleleaf/configs/eslint"
]
},
"ava": {
"files": [
"tests/**/*.test.ts"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=esbuild-node-loader",
"--experimental-specifier-resolution=node",
"--no-warnings"
]
},
"publishConfig": {
"access": "public"
},
"release-it": {
"github": {
"release": true,
"web": true
}
}
}