-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "libsql",
"version": "0.5.0-pre.5",
"description": "A better-sqlite3 compatible API for libSQL that supports Bun, Deno, and Node",
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64",
"wasm32"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"sqlite-error.js",
"promise.js",
"types/index.d.ts",
"types/promise.d.ts"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
},
"./promise": {
"types": "./types/promise.d.ts",
"default": "./promise.js"
}
},
"scripts": {
"test": "cargo test",
"debug": "cargo build --message-format=json | npm exec neon dist",
"build": "npx tsc && cargo build --message-format=json --release | npm exec neon dist -- --name libsql-js",
"cross": "cross build --message-format=json --release | npm exec neon dist -- --name libsql-js -m /target",
"pack-build": "neon pack-build",
"prepack": "neon install-builds",
"postversion": "git push --follow-tags"
},
"author": "Pekka Enberg <[email protected]>",
"license": "MIT",
"neon": {
"targets": {
"aarch64-apple-darwin": "@libsql/darwin-arm64",
"aarch64-unknown-linux-gnu": "@libsql/linux-arm64-gnu",
"aarch64-unknown-linux-musl": "@libsql/linux-arm64-musl",
"x86_64-apple-darwin": "@libsql/darwin-x64",
"x86_64-pc-windows-msvc": "@libsql/win32-x64-msvc",
"x86_64-unknown-linux-gnu": "@libsql/linux-x64-gnu",
"x86_64-unknown-linux-musl": "@libsql/linux-x64-musl"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tursodatabase/libsql-js.git"
},
"keywords": [
"libsql"
],
"bugs": {
"url": "https://github.com/tursodatabase/libsql-js/issues"
},
"homepage": "https://github.com/tursodatabase/libsql-js",
"devDependencies": {
"@neon-rs/cli": "^0.0.165",
"typescript": "^5.4.5"
},
"dependencies": {
"@neon-rs/load": "^0.0.4",
"detect-libc": "2.0.2"
}
}