-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.08 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
{
"name": "surrealdb.js",
"private": true,
"workspaces": [
"packages/*",
"demo/*"
],
"scripts": {
"build": "turbo build",
"build:sdk": "turbo build --filter=surrealdb",
"build:sqon": "turbo build --filter=@surrealdb/sqon",
"build:wasm": "turbo build --filter=@surrealdb/wasm",
"build:node": "turbo build --filter=@surrealdb/node --",
"build:spectron": "turbo build --filter=@surrealdb/spectron",
"deploy:spectron": "turbo deploy --filter=@surrealdb/spectron --",
"test": "bun run build:sdk && cd packages/tests/surrealdb && bun test --preload ./global.ts",
"test:wasm": "bun run build:sdk && bun run build:wasm && cd packages/tests/surrealdb && SURREAL_BACKEND=wasm bun test --preload ./global-wasm.ts",
"test:node": "bun run build:sdk && bun run build:node && cd packages/tests/surrealdb && SURREAL_BACKEND=node bun test --preload ./global-node.ts",
"test:spectron": "cd packages/tests/spectron && bun test",
"sync": "turbo sync",
"deploy:sdk": "turbo deploy --filter surrealdb --",
"deploy:sqon": "turbo deploy --filter @surrealdb/sqon --",
"deploy:surreal": "turbo deploy --filter '@surrealdb/node' --filter '@surrealdb/wasm' --",
"validate:versions": "bun run scripts/validate-versions.ts",
"qc": "biome check .",
"qa": "biome check . --write",
"qau": "biome check . --write --unsafe",
"qts": "tsc --noEmit",
"qtsw": "tsc --noEmit --watch",
"demo:wasm": "bun run --cwd demo/wasm demo",
"demo:node": "bun run --cwd demo/node demo"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/semver": "^7.7.1",
"@types/signale": "^1.4.7",
"bun-types": "^1.2.21",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.21.5",
"esbuild-plugin-tsc": "^0.4.0",
"fast-check": "^4.3.0",
"rolldown": "1.0.0-beta.31",
"semver": "^7.7.2",
"signale": "^1.4.0",
"turbo": "^2.5.6"
},
"packageManager": "^bun@1.2.21"
}