-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.56 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
61
62
63
64
65
66
67
68
{
"name": "libsql-stateless-easy",
"version": "1.8.0",
"description": "thin libSQL stateless http driver for TypeScript and JavaScript but easy",
"homepage": "https://github.com/DaBigBlob/libsql-stateless-easy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DaBigBlob/libsql-stateless-easy.git"
},
"bugs": {
"url": "https://github.com/DaBigBlob/libsql-stateless-easy/issues",
"email": "[email protected]"
},
"author": {
"name": "LocalBox Crox",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"./dist/*",
"./LICENSE",
"./package.json",
"./README.md"
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
}
},
"devDependencies": {
"js-base64": "^3.7.7",
"tsup": "^8.0.2",
"typescript": "^5.0.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rm -rf ./dist",
"build": "tsup && rm ./dist/main.d.cts",
"typecheck": "tsc --noEmit",
"test": "./js_test _tests/test4.ts",
"perf": "bun run _tests/perf.ts",
"clean": "npm run prebuild",
"prod": "npm publish && npm run clean"
},
"keywords": [
"libsql",
"database",
"sqlite",
"serverless",
"vercel",
"netlify",
"lambda",
"http",
"https",
"webapi",
"cloudflare-workers",
"cloudflare-pages",
"edge"
],
"dependencies": {
"libsql-stateless": "2.9.1"
}
}