-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 878 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 878 Bytes
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
{
"name": "@alinea/sqlite-wasm",
"version": "0.1.18",
"license": "MIT",
"type": "module",
"types": "./dist/init-base64.d.ts",
"exports": {
".": {
"edge": "./dist/init-edge.js",
"edge-light": "./dist/init-edge.js",
"worker": "./dist/init-wasm.js",
"default": "./dist/init-base64.js"
},
"./package.json": "./package.json",
"./*": "./dist/*"
},
"scripts": {
"build": "make build-dist",
"build:ts": "tsc && cp src/sqlite3-emscripten.d.ts dist/sqlite3-emscripten.d.ts",
"clean": "make clean",
"test": "node test.js"
},
"files": [
"dist"
],
"dependencies": {
"@alinea/iso": "*"
},
"devDependencies": {
"@types/emscripten": "^1.39.6",
"@types/sql.js": "^1.4.3",
"base64-arraybuffer": "^1.0.2",
"bun-types": "^0.6.9",
"esbuild": "^0.14.47",
"typescript": "^5.1.3"
}
}