-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
111 lines (111 loc) · 3.51 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@fireproof/monorepo",
"version": "0.0.0-smoke-7e4d21f2-1739183820",
"private": true,
"description": "Live ledger for the web",
"type": "module",
"scripts": {
"prepublish": "pnpm run build",
"publish": "pnpm run '/publish:/'",
"publish:fireproof-core": "tsx ./publish-package.ts ./dist/fireproof-core/package.json",
"publish:use-fireproof": "tsx ./publish-package.ts ./dist/use-fireproof/package.json",
"prebuild": "rm -rf dist",
"build": "pnpm run '/build:/' && pnpm run '/pub:/'",
"build:tsc": "tsc",
"build:tsup": "tsup",
"build:docs": "bash build-docs.sh",
"pub:fireproof-core": "cp -pr tests ./dist/fireproof-core; tsx ./version-copy-package.ts ./dist/fireproof-core/package-fireproof-core.json",
"pub:use-fireproof": "tsx ./version-copy-package.ts ./dist/use-fireproof/package-use-fireproof.json",
"presmoke": "pnpm run build; pnpm run presmoke:publish",
"presmoke:publish": "bash -x smoke/publish-local-registry.sh",
"smoke": "pnpm run '/^smoke:/'",
"smoke:esm": "sh smoke/esm/it.sh",
"smoke:node": "sh smoke/npm/it.sh",
"smoke:react": "sh smoke/react/it.sh",
"clean": "rm -rf node_modules dist",
"env": "env",
"test": "vitest --run",
"test:file": "vitest --config vitest.file.config.ts --run",
"test:indexdb": "vitest --config vitest.browser.config.ts --run",
"test:deno": "deno run --quiet --allow-net --allow-write --allow-run --allow-sys --allow-ffi --allow-read --allow-env ./node_modules/vitest/vitest.mjs --run --project file",
"format": "prettier .",
"lint": "eslint"
},
"keywords": [
"ledger",
"database",
"JSON",
"immutable",
"IPLD",
"CID",
"UCAN"
],
"contributors": [
"J Chris Anderson",
"Alan Shaw",
"Travis Vachon",
"Mikeal Rogers",
"Meno Abels"
],
"license": "Apache-2.0 OR MIT",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/randombytes": "^2.0.3",
"@types/react": "^18.3.12",
"@typescript-eslint/typescript-estree": "^8.24.0",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"esbuild": "^0.24.2",
"esbuild-plugin-resolve": "^2.0.0",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"semver": "^7.7.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"uuidv7": "^1.0.2",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"webdriverio": "^9.9.1",
"zx": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fireproof-storage/fireproof.git"
},
"bugs": {
"url": "https://github.com/fireproof-storage/fireproof/issues"
},
"homepage": "https://github.com/fireproof-storage/fireproof#readme",
"dependencies": {
"@adviser/cement": "^0.3.19",
"@fireproof/vendor": "^1.1.0-dev",
"@ipld/car": "^5.4.0",
"@ipld/dag-cbor": "^9.2.2",
"@ipld/dag-json": "^10.2.3",
"@ipld/unixfs": "^3.0.0",
"cborg": "^4.2.8",
"ipfs-unixfs-exporter": "^13.6.1",
"charwise": "^3.0.1",
"esbuild-plugin-replace": "^1.4.0",
"idb": "^8.0.2",
"multiformats": "^13.3.2",
"p-limit": "^6.2.0",
"p-map": "^7.0.3",
"p-retry": "^6.2.1",
"prolly-trees": "^1.0.4",
"randombytes": "^2.1.0",
"react": "^18.3.1"
},
"bundle-phobia": {
"max-size": "390kB",
"max-gzip-size": "110kB",
"max-overall-size": "1MB"
}
}