-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@libsql/client-wasm",
"version": "0.16.0",
"keywords": [
"libsql",
"database",
"sqlite",
"serverless",
"vercel",
"netlify",
"lambda"
],
"description": "libSQL driver for TypeScript and JavaScript",
"repository": {
"type": "git",
"url": "git+https://github.com/libsql/libsql-client-ts",
"directory": "packages/libsql-client-wasm"
},
"authors": [
"Jan Špaček <honza@chiselstrike.com>",
"Pekka Enberg <penberg@chiselstrike.com>",
"Jan Plhak <jp@chiselstrike.com>"
],
"license": "MIT",
"type": "module",
"bundledDependencies": [
"@libsql/libsql-wasm-experimental"
],
"main": "lib-esm/wasm.js",
"types": "lib-esm/wasm.d.ts",
"exports": {
".": {
"types": "./lib-esm/wasm.d.ts",
"import": {
"default": "./lib-esm/wasm.js"
}
}
},
"typesVersions": {
"*": {
".": [
"./lib-esm/wasm.d.ts"
]
}
},
"files": [
"lib-esm/**"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rm -rf ./lib-esm && npm run bundle",
"build": "npm run build:esm",
"build:esm": "tsc -p tsconfig.build-esm.json",
"bundle": "rm -rf node_modules && mkdir -p node_modules/@libsql/libsql-wasm-experimental && cp -R ../../node_modules/@libsql/libsql-wasm-experimental/* node_modules/@libsql/libsql-wasm-experimental",
"format:check": "prettier --check .",
"test": "jest --runInBand",
"typecheck": "tsc --noEmit",
"typedoc": "rm -rf ./docs && typedoc"
},
"dependencies": {
"@libsql/core": "^0.16.0",
"@libsql/libsql-wasm-experimental": "^0.0.2",
"js-base64": "^3.7.5"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.28",
"typescript": "^4.9.4"
}
}