-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "@a06000208/discord-framework",
"version": "0.0.1",
"description": "Opinionated discord.js framework",
"repository": {
"type": "git",
"url": "git+https://github.com/06000208/discord.git"
},
"author": "06000208",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/06000208/discord/issues"
},
"homepage": "https://github.com/06000208/discord#readme",
"scripts": {
"test": "echo \"Error: no tests\" && exit 1",
"lint": "eslint . --ext .js,.mjs,.cjs",
"fix": "eslint . --ext .js,.mjs,.cjs --fix",
"dev": "node esbuild.config.js",
"build": "node esbuild.config.js --production && npx tsc",
"docs": "echo \"Error: no docs setup\" && exit 1",
"refresh-handler": "npm uninstall @a06000208/handler && npm install github:06000208/handler",
"refresh-commands": "npm uninstall @a06000208/commands && npm install github:06000208/commands",
"refresh-git-pkg": "npm run refresh-handler && npm run refresh-commands",
"prepare": "npm run build"
},
"files": [
"dist",
"src"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./src/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./src/index.js",
"require": "./dist/index.cjs"
},
"sideEffects": false,
"engines": {
"node": ">=16.11.0"
},
"dependencies": {
"@a06000208/commands": "github:06000208/commands",
"@a06000208/handler": "github:06000208/handler",
"@discordjs/collection": "^2.0.0",
"@sapphire/discord-utilities": "^3.2.1",
"discord.js": "^14.14.1"
},
"devDependencies": {
"esbuild": "^0.16.17",
"eslint": "^8.40.0",
"typescript": "^5.0.4"
}
}