-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.95 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.95 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
{
"name": "@fireproof/cloud-backend-base",
"version": "0.0.0",
"description": "Live ledger for the web.",
"type": "module",
"scripts": {
"build": "core-cli tsc",
"test": "vitest --run",
"pack": "echo cloud need not to pack",
"publish": "echo skip"
},
"keywords": [
"ledger",
"JSON",
"document",
"IPLD",
"CID",
"IPFS"
],
"contributors": [
"J Chris Anderson",
"Alan Shaw",
"Travis Vachon",
"Mikeal Rogers",
"Meno Abels"
],
"author": "J Chris Anderson",
"license": "AFL-2.0",
"homepage": "https://use-fireproof.com",
"gptdoc": "import { fireproof } from 'use-fireproof'; const db = fireproof('app-db-name'); const ok = await db.put({ anyField: ['any','json'] }); const doc = await db.get(ok.id); await db.del(doc._id); db.subscribe(myRedrawFn); const result = await db.query('anyField', {range : ['a', 'z']}); result.rows.map(({ key }) => key);",
"repository": {
"type": "git",
"url": "git+https://github.com/fireproof-storage/fireproof.git"
},
"bugs": {
"url": "https://github.com/fireproof-storage/fireproof/issues"
},
"dependencies": {
"@adviser/cement": "^0.5.34",
"@cloudflare/workers-types": "^4.20260317.1",
"@fireproof/cloud-base": "workspace:0.0.0",
"@fireproof/core-base": "workspace:0.0.0",
"@fireproof/core-gateways-cloud": "workspace:0.0.0",
"@fireproof/core-protocols-cloud": "workspace:0.0.0",
"@fireproof/core-runtime": "workspace:0.0.0",
"@fireproof/vendor": "workspace:0.0.0",
"@libsql/client": "^0.17.2",
"aws4fetch": "^1.0.20",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.8",
"jose": "^6.2.1"
},
"devDependencies": {
"@fireproof/core-cli": "workspace:0.0.0",
"@fireproof/core-types-base": "workspace:0.0.0",
"@fireproof/core-types-blockstore": "workspace:0.0.0",
"@fireproof/core-types-protocols-cloud": "workspace:0.0.0",
"drizzle-kit": "0.30.6",
"vitest": "^4.0.14",
"zx": "^8.8.5"
}
}