-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdeno.json
More file actions
52 lines (48 loc) · 1.55 KB
/
deno.json
File metadata and controls
52 lines (48 loc) · 1.55 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
{
"name": "@db/sqlite",
"version": "0.13.0",
"github": "https://github.com/denodrivers/sqlite3",
"exports": "./mod.ts",
"exclude": [
"sqlite",
"scripts"
],
"tasks": {
"test": "deno test -A test/test.ts",
"build": "deno run -A scripts/build.ts",
"bench-deno": "deno run -A bench/bench_deno.js 50 1000000",
"bench-deno-builtin": "deno run -A bench/bench_node_sqlite.mjs 50 1000000",
"bench-deno-ffi": "deno run -A bench/bench_deno_ffi.js 50 1000000",
"bench-deno-wasm": "deno run -A bench/bench_deno_wasm.js 50 1000000",
"bench-node": "node bench/bench_node.js 50 1000000",
"bench-node-builtin": "node bench/bench_node_sqlite.mjs 50 1000000",
"bench-bun": "bun run bench/bench_bun.js 50 1000000",
"bench-bun-ffi": "bun run bench/bench_bun_ffi.js 50 1000000",
"bench-c": "./bench/bench 50 1000000",
"bench-python": "python ./bench/bench_python.py",
"bench:northwind": "deno bench -A bench/northwind/deno.js",
"bench-wasm:northwind": "deno run -A bench/northwind/deno_wasm.js",
"bench-node:northwind": "node bench/northwind/node.mjs",
"bench-bun:northwind": "bun run bench/northwind/bun.js",
"bench-charts": "deno run -A bench/bench.js"
},
"lint": {
"exclude": ["bench"],
"rules": {
"exclude": [
"camelcase",
"no-explicit-any"
],
"include": [
"explicit-function-return-type",
"eqeqeq",
"explicit-module-boundary-types"
]
}
},
"compilerOptions": {
"types": [
"./node_modules/bun-types/index.d.ts"
]
}
}