-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "libsql-stateless",
"version": "2.9.1",
"description": "thin libSQL stateless http driver for TypeScript and JavaScript",
"homepage": "https://github.com/DaBigBlob/libsql-stateless#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DaBigBlob/libsql-stateless.git"
},
"bugs": {
"url": "https://github.com/DaBigBlob/libsql-stateless/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": {
"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": "bun run _tests/test2.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"
]
}