-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 946 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 946 Bytes
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
{
"name": "chorddb",
"version": "2.0.0",
"description": "Chorddb is a simple, lightweight package which is a database like MongoDB which uses Discord as storage with encryption. It works with JSON data.",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"format": "prettier --write .",
"build": "tsup",
"test": "node test/index.ts"
},
"keywords": [
"database",
"discord",
"mongodb",
"chorddb"
],
"author": "iamiak",
"license": "MIT",
"dependencies": {
"@discordjs/collection": "^2.1.1",
"@discordjs/rest": "^2.6.0",
"discord-api-types": "^0.38.38",
"form-data": "^4.0.5"
},
"devDependencies": {
"@types/node": "^25.2.1",
"dotenv": "^17.3.1",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}