-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "sqldef",
"version": "1.0.0",
"type": "module",
"description": "Simple wasm wrapper around sqldef for easy use with web/node/bun/deno",
"keywords": [
"migration",
"mysql",
"postgres"
],
"exports": {
".": "./src/index.js",
"./db": "./src/db.js"
},
"scripts": {
"test": "node --test",
"start": "npx -y live-server demo --mount=/sqldef:src",
"build": "cd src/go && GOOS=js GOARCH=wasm tinygo build -target wasm -o sqldef.wasm sqldef-wasm.go && cp $(tinygo env TINYGOROOT)/targets/wasm_exec.js . && cd ../.. && node build.js"
},
"author": "David Konsumer <[email protected]> (http://konsumer.js.org)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sqldef/sqldef-wasm.git"
},
"bugs": {
"url": "https://github.com/sqldef/sqldef-wasm/issues"
},
"homepage": "https://github.com/sqldef/sqldef-wasm#readme",
"bin": {
"sqldef": "cli.mjs"
},
"dependencies": {
"better-sqlite3": "^11.9.1",
"cosmiconfig": "^9.0.0",
"mysql2": "^3.13.0",
"pg": "^8.14.1",
"prompt-confirm": "^2.0.4",
"tedious": "^18.6.1",
"yargs": "^17.7.2"
}
}