-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 1.98 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
{
"name": "@surrealdb/node",
"version": "1.0.0-beta.2",
"author": {
"name": "Raphael Darley",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/surrealdb/surrealdb.node"
},
"description": "Node.js driver for SurrealDB",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "surrealdb.node",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"universal-apple-darwin"
]
}
},
"exports": {
".": {
"types": "./lib/embedded.d.ts",
"default": "./lib/embedded.js"
}
},
"license": "Apache-2.0",
"devDependencies": {
"@napi-rs/cli": "^2.18.3",
"ava": "^5.1.1",
"typescript": "^5.5.4"
},
"dependencies": {
"surrealdb": "^1.0.6"
},
"peerDependencies": {
"surrealdb": "^1.0.6"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "node move_artifacts.js",
"build": "bash ./build.sh",
"build:debug": "napi build --platform && bash ./fix-deps.sh && tsc",
"prepublishOnly": "napi prepublish -t npm",
"test": "npx tsx test.ts",
"universal": "napi universal",
"version": "napi version",
"ts-compile": "pnpm i typescript && tsc --version && tsc"
},
"files": [
"lib",
"index.d.ts",
"index.js",
"npm",
"surrealdb.node.*.node"
]
}