-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "@objectos/browser",
"version": "0.1.0",
"type": "module",
"license": "AGPL-3.0",
"description": "Browser runtime plugin for ObjectOS - enables running ObjectOS backend entirely in the browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean && tsc --emitDeclarationOnly --declaration",
"test": "jest --forceExit --passWithNoTests",
"test:coverage": "jest --coverage --forceExit --passWithNoTests",
"lint": "eslint src/",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@objectstack/runtime": "^3.0.9",
"@objectstack/spec": "3.0.9",
"comlink": "^4.4.1",
"idb": "^8.0.0",
"sql.js": "^1.14.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"@types/sql.js": "^1.4.9",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.0.0",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"keywords": [
"objectos",
"browser",
"wasm",
"sqlite",
"opfs",
"service-worker",
"offline-first"
]
}