-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "sqlite-map",
"version": "0.1.2",
"description": "Simple javascript persistent map and array datastructures based on better-sqlite3",
"license": "ISC",
"author": "Amit",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"repository": "amit13k/sqlite-map",
"files": [
"/lib"
],
"scripts": {
"dev": "vite-node src/index.ts",
"test": "vitest",
"build": "tsc",
"lint": "eslint --ext .js,.ts ."
},
"keywords": [
"persistent map",
"persistent storage",
"sqlite"
],
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-strict": "^14.0.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier-plugin-jsdoc": "^1.0.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-node": "^0.34.4",
"vitest": "^0.34.4"
},
"peerDependencies": {
"better-sqlite3": "^8.x.x"
}
}