-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 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
{
"name": "@misterpea/sqlite-worker-db",
"version": "0.1.2",
"description": "SQLite database interface using Node.js worker threads",
"repository": {
"type": "git",
"url": "https://github.com/MisterPea/sqlite-worker-db"
},
"keywords": [
"sqlite",
"worker",
"database",
"better-sqlite3",
"typescript"
],
"license": "MIT",
"author": "Perry Angelora <perry.angelora@gmail.com>",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"start": "tsx watch src/index.ts",
"test": "vitest",
"pre-publish": "vitest run && npm run build",
"coverage": "vitest run --coverage",
"build": "tsc"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "^4.0.15",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"uuid": "^13.0.0"
}
}