-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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": "@fireproof/core-cli",
"version": "0.0.0",
"description": "Live ledger for the web.",
"type": "module",
"bin": {
"core-cli": "run.js"
},
"scripts": {
"build": "node ./run.js tsc",
"test": "vitest --run",
"pack": "FP_TSC=tsgo tsx ./main.ts build --doPack",
"publish": "FP_TSC=tsgo tsx ./main.ts build"
},
"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",
"@fireproof/core-device-id": "workspace:0.0.0",
"@fireproof/core-keybag": "workspace:0.0.0",
"@fireproof/core-runtime": "workspace:0.0.0",
"@fireproof/core-types-base": "workspace:0.0.0",
"@fireproof/vendor": "workspace:0.0.0",
"@hono/node-server": "^1.19.11",
"@pnpm/lockfile-file": "^9.1.3",
"@typescript/native-preview": "7.0.0-dev.20260320.1",
"aws4fetch": "^1.0.20",
"cmd-ts": "^0.15.0",
"find-up": "^8.0.0",
"fs-extra": "^11.3.4",
"hono": "^4.12.8",
"jose": "^6.2.1",
"multiformats": "^13.4.2",
"open": "^11.0.0",
"semver": "^7.7.4",
"zod": "^4.3.6",
"zx": "^8.8.5"
},
"devDependencies": {
"@fireproof/core-cli": "workspace:0.0.0",
"@types/fs-extra": "^11.0.4",
"@types/semver": "^7.7.1",
"tsx": "^4.21.0",
"vitest": "^4.0.14"
}
}