-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
104 lines (104 loc) · 3.13 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
{
"name": "@fireproof/monorepo",
"version": "0.0.0-dev",
"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",
"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": "bash smoke/esm/it.sh",
"smoke:npm": "bash smoke/npm/it.sh",
"smoke:react": "bash -x smoke/react/it.sh",
"clean": "rm -rf node_modules dist",
"test": "vitest --run",
"test:file": "vitest --config vitest.file.config.ts --run",
"test:indexdb": "vitest --config vitest.browser.config.ts --run",
"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.17.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.19.0",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"esbuild": "^0.24.2",
"esbuild-plugin-resolve": "^2.0.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"semver": "^7.6.3",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"webdriverio": "^9.5.1",
"zx": "^8.3.0"
},
"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.5",
"@fireproof/vendor": "^1.0.4",
"@ipld/unixfs": "^3.0.0",
"charwise": "^3.0.1",
"esbuild-plugin-replace": "^1.4.0",
"idb": "^8.0.1",
"memfs": "^4.15.3",
"multiformats": "^13.3.1",
"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",
"typedoc": "^0.27.6",
"uuidv7": "^1.0.2"
},
"bundle-phobia": {
"max-size": "390kB",
"max-gzip-size": "110kB",
"max-overall-size": "1MB"
}
}