-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "enmap",
"version": "6.0.3",
"description": "A simple database wrapper to make sqlite database interactions much easier for beginners, with additional array helper methods.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"build-api-docs": "node ./scripts/build-docs.js",
"build-docs": "cd docs && npx retype build"
},
"files": [
"src",
"typings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eslachance/enmap.git"
},
"bugs": {
"url": "https://github.com/eslachance/enmap/issues"
},
"homepage": "https://enmap.evie.dev/",
"keywords": [
"sqlite",
"sql",
"sqlite3",
"better-sqlite3",
"db",
"database",
"caching",
"storing",
"easy",
"quick",
"simple",
"wrapper"
],
"author": "Evelyne Lachance <[email protected]> (https://evie.codes/)",
"license": "Apache-2.0",
"dependencies": {
"better-serialize": "^1.0.0",
"better-sqlite3": "^9.4.3",
"lodash-es": "^4.17.21",
"on-change": "^5.0.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"jsdoc-to-markdown": "^8.0.0",
"limax": "^4.0.0",
"retypeapp": "^3.5.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=16.0.0"
},
"types": "./typings/index.d.ts"
}