-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 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
{
"name": "tursobase",
"version": "0.1.10",
"description": "Sync your PocketBase data with Turso. This library enables distributed PocketBase with Turso primary database as master.",
"author": "menglinmaker",
"license": "MIT",
"type": "module",
"keywords": [
"pocketbase",
"turso"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/MengLinMaker/TursoBase.git"
},
"main": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "vitest local.test",
"test:local": "vitest run local.test",
"test:remote": "vitest run remote.test",
"format": "prettier --no-semi --write .",
"lint": "oxlint --jest-plugin --import-plugin .",
"tsc": "rm -rf dist && tsc"
},
"dependencies": {
"@libsql/client": "^0.5.1"
},
"devDependencies": {
"@types/node": "^20.11.20",
"oxlint": "^0.2.10",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}