forked from tursodatabase/libsql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "libsql",
"version": "0.1.14",
"description": "",
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"sqlite-error.js",
"promise.js",
"types/index.d.ts"
],
"exports": {
".": "./index.js",
"./promise": "./promise.js"
},
"scripts": {
"test": "cargo test",
"debug": "cargo build --message-format=json | neon dist",
"build": "cargo build --message-format=json --release | neon dist --name libsql-js",
"cross": "cross build --message-format=json --release | 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",
"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/libsql/libsql.git"
},
"keywords": [
"libsql"
],
"bugs": {
"url": "https://github.com/libsql/libsql/issues"
},
"homepage": "https://github.com/libsql/libsql",
"devDependencies": {
"@neon-rs/cli": "^0.0.165"
},
"dependencies": {
"@neon-rs/load": "^0.0.4",
"detect-libc": "2.0.2"
},
"optionalDependencies": {
"@libsql/darwin-arm64": "0.0.1",
"@libsql/linux-x64-gnu": "0.0.1"
}
}