-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "surrealdb",
"version": "1.0.6",
"type": "module",
"license": "Apache-2.0",
"description": "The official SurrealDB SDK for JavaScript.",
"keywords": ["surrealdb", "surrealdb.js", "javascript", "typescript"],
"repository": {
"type": "git",
"url": "git+https://github.com/surrealdb/surrealdb.js.git"
},
"homepage": "https://github.com/surrealdb/surrealdb.js",
"packageManager": "^[email protected]",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "latest",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.21.5",
"esbuild-plugin-tsc": "^0.4.0",
"get-port": "^7.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0",
"tslib": "^2.6.3"
},
"dependencies": {
"isows": "^1.0.6",
"uuidv7": "^1.0.1"
},
"scripts": {
"ts": "tsc --watch --noEmit true --emitDeclarationOnly false",
"quality:check": "biome check .",
"quality:apply": "biome check . --write",
"quality:apply:unsafe": "biome check . --write --unsafe",
"build": "bun run scripts/build.ts",
"jsr": "bun run scripts/jsr.ts"
},
"engines": {
"node": ">=18.0.0"
},
"browser": "./dist/index.bundled.mjs",
"types": "./dist/index.d.ts",
"main": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.bundled.mjs"
}
},
"files": ["dist", "README.md", "LICENCE", "SECURITY.md"]
}