-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "@made-simple/sqlite-store",
"description": "Makes use of Keyv to make an even easier SQLite that also cares about dev/prod environments",
"license": "MIT",
"version": "1.3.2",
"private": false,
"author": {
"name": "alexasterisk",
"url": "https://github.com/alexasterisk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm-made-simple/sqlite-store"
},
"dependencies": {
"@made-simple/logging": "^2.3.4",
"@keyv/sqlite": "^3.6.7",
"keyv": "^4.5.4"
},
"keywords": [
"keyv",
"sqlite",
"store",
"database",
"simple"
],
"scripts": {
"build": "rm -rf dist && npm i && tsc -b",
"prepublishOnly": "npm shrinkwrap && npm run build"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/node": "^20.12.12",
"ts-node": "^10.9.2",
"tslib": "^2.6.2"
},
"files": [
"dist/",
"!.tsbuildinfo"
]
}