-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.23 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@cap-js/sqlite",
"version": "2.2.0",
"description": "CDS database service for SQLite",
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/sqlite#cds-database-service-for-sqlite",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-js/cds-dbs.git"
},
"bugs": {
"url": "https://github.com/cap-js/cds-dbs/issues"
},
"keywords": [
"CAP",
"CDS",
"SQLite"
],
"author": "SAP SE (https://www.sap.com)",
"main": "index.js",
"files": [
"cds-plugin.js",
"lib",
"CHANGELOG.md"
],
"scripts": {
"test": "cds-test"
},
"dependencies": {
"better-sqlite3": "^12.0.0",
"@cap-js/db-service": "^2.9.0"
},
"peerDependencies": {
"@sap/cds": ">=9.8",
"sql.js": "^1.13.0"
},
"peerDependenciesMeta": {
"sql.js": {
"optional": true
}
},
"cds": {
"requires": {
"kinds": {
"sql": {
"[development]": {
"kind": "sqlite",
"credentials": {
"url": ":memory:"
}
}
},
"sqlite": {
"impl": "@cap-js/sqlite",
"pool": {
"max": 1
}
}
},
"db": "sql"
}
},
"license": "Apache-2.0"
}