-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "sleetcord",
"version": "2.3.1",
"description": "An interaction-first command library for Discord.js",
"license": "MIT",
"author": "AtoraSuunva",
"type": "module",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"lint": "biome check && tsc --noEmit",
"lint:fix": "biome check --write && tsc --noEmit",
"start:dev": "node --loader ts-node/esm -r dotenv/config test/index.ts",
"prepublishOnly": "pnpm lint && pnpm build"
},
"dependencies": {
"discord-api-types": "^0.37.115",
"tseep": "^1.3.1"
},
"peerDependencies": {
"discord.js": "^14.12.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.5",
"dotenv": "^16.4.7",
"env-var": "^7.5.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}