-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.94 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "memory-write-ahead-vfs",
"version": "0.2.0",
"description": "SharedArrayBuffer-backed in-memory write-ahead VFS for wa-sqlite.",
"type": "module",
"license": "MIT",
"author": "Yahya JIRARI",
"repository": {
"type": "git",
"url": "git+https://github.com/whygee-dev/memory-write-ahead-vfs.git"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json && node scripts/prepare-dist.mjs",
"benchmark": "playwright test --config playwright.benchmark.config.ts",
"benchmark:publish-result": "node scripts/publish-benchmark-result.mjs",
"check": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "playwright test",
"test:browser": "playwright test",
"test:benchmark-publisher": "node --test scripts/publish-benchmark-result.test.mjs",
"test:stress": "playwright test --repeat-each=20 --workers=1",
"prepack": "pnpm build",
"prepublishOnly": "pnpm format:check && pnpm check && pnpm test:benchmark-publisher && pnpm test:browser && pnpm build"
},
"keywords": [
"sqlite",
"wa-sqlite",
"vfs",
"write-ahead",
"sharedarraybuffer",
"browser"
],
"peerDependencies": {
"@journeyapps/wa-sqlite": ">=1.7.0 <1.8.0"
},
"devDependencies": {
"@journeyapps/wa-sqlite": "^1.7.0",
"@playwright/test": "^1.51.1",
"@powersync/common": "1.57.2",
"@powersync/web": "1.39.0",
"@types/node": "^20.19.0",
"comlink": "4.4.2",
"prettier": "^3.8.4",
"typescript": "^5.9.3",
"vite": "^8.0.1"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.27.0"
}