-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "shouw.db",
"version": "0.0.1",
"description": "A database extension for Shouw.js.",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": ["discord.js", "aoi.js", "shouw.js", "bdfd", "database", "discord", "bot"],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "node dist/__test__"
},
"author": "Tyowk <tyowk@outlook.com>",
"license": "Apache-2.0",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.29",
"shouw.js": "github:shouwjs/shouw.js",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shouwjs/database.git"
},
"bugs": {
"url": "https://github.com/shouwjs/database/issues"
},
"files": ["dist", "README.md", "LICENSE"],
"engines": {
"node": ">=20.x"
}
}