-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "@bight-ts/core",
"version": "0.1.0",
"type": "module",
"description": "Framework core for Bight.ts, the readable TypeScript-first Discord bot framework",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bight-ts/bight-core"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "node -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\" && tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "pnpm run test && pnpm run build"
},
"dependencies": {
"discord.js": "^14.21.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^24.3.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0"
}
}