forked from vlcn-io/cr-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "@vlcn.io/crsqlite-allinone",
"version": "0.8.1",
"description": "CR-SQLite loadable extension",
"homepage": "https://vlcn.io",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/vlcn-io/cr-sqlite",
"directory": "https://github.com/vlcn-io/cr-sqlite/tree/main/js/node-allinone"
},
"module": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist/**"
],
"dependencies": {
"@vlcn.io/crsqlite": "workspace:*",
"@vlcn.io/xplat-api": "workspace:*",
"better-sqlite3": "^8.0.1"
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --build -w",
"test": "vitest --run",
"deep-clean": "rm -rf ./dist || true && rm tsconfig.tsbuildinfo || true"
},
"license": "MIT",
"keywords": [
"sql",
"sqlite",
"sqlite3",
"crdt"
],
"devDependencies": {
"@types/jest": "^29.2.2",
"typescript": "^4.8.4",
"vitest": "^0.25.0",
"nanoid": "^4.0.0"
}
}