-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.89 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
{
"name": "@nexbot/nex-framework",
"version": "1.0.0",
"description": "A discord bot framework by @nexbot-dev built on top of discord.js",
"type": "module",
"author": "@nexbot-dev",
"license": "Apache-2.0",
"packageManager": "yarn@3.5.1",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --ext .js,.ts --fix src tests",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"imports": {
"#core/*": [
"./src/core/*.js"
],
"#libs/*": [
"./src/libs/*.js"
]
},
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"engines": {
"node": ">=20.1.0",
"npm": ">=9.6.7"
},
"devDependencies": {
"@nexbot/eslint-config": "^1.0.1",
"@vitest/coverage-v8": "^0.32.4",
"discord.js": "^14.11.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"pinst": "^3.0.0",
"prettier": "^3.0.0",
"terser": "^5.18.2",
"tsup": "^7.1.0",
"typescript": "^5.0.4",
"vitest": "^0.32.4"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nexbot-dev",
"nexbot",
"discord.js",
"discord",
"bot",
"ts",
"typescript"
],
"homepage": "https://github.com/nexbot-dev/nex-framework",
"repository": {
"type": "git",
"url": "git+https://github.com/nexbot-dev/nex-framework.git"
},
"bugs": {
"url": "https://github.com/nexbot-dev/nex-framework/issues"
},
"files": [
"dist/"
],
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}