-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "@fehujs/database",
"version": "0.1.8",
"description": "Fehujs database package",
"main": "build/index.js",
"type": "module",
"files": [
"./build/**/*",
"README.md",
"LICENCE"
],
"exports": {
".": "./build/index.js"
},
"scripts": {
"build": "node scripts/build.cjs",
"build:types": "tsc -d --declarationDir build --declarationMap --emitDeclarationOnly",
"release": "pnpm build && pnpm build:types",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fehujs/database.git"
},
"keywords": [
"database",
"small",
"orm"
],
"author": "Pascal LLEONART",
"license": "MIT",
"bugs": {
"url": "https://github.com/fehujs/database/issues"
},
"homepage": "https://github.com/fehujs/database#readme",
"devDependencies": {
"@fehujs/build": "^0.2.0",
"@fehujs/tsconfig": "^1.0.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"dependencies": {
"knex": "^3.1.0",
"sqlite3": "^5.1.7"
}
}