-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.56 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.56 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
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
{
"name": "@fireproof/monorepo",
"version": "0.0.0-smoke",
"private": true,
"description": "Live ledger for the web",
"type": "module",
"files": [],
"engines": {
"node": ">=22"
},
"scripts": {
"prepack": "core-cli build --prepare-version",
"pack": "echo do nothing",
"build:all": "pnpm run '/build:/' && pnpm run '/pub:/'",
"build": "core-cli tsc",
"build:tsup": "tsup",
"build:docs": "if [ \"$FP_CI\" = 'fp_ci' ] ; then bash build-docs.sh; fi",
"presmoke": "sh smoke/publish-local-registry.sh",
"smoke": "pnpm run '/^smoke:/'",
"smoke-retry": "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",
"dev": "pnpm run '/^dev:/'",
"dev:3rd-party": "cd cloud/3rd-party && pnpm run dev",
"dev:todo-app": "npx vite -c vite.config.ts cloud/todo-app --port 3002",
"dev:cf-d1": "wrangler dev -c cloud/backend/cf-d1/wrangler.toml --env dev",
"test": "vitest --run",
"test:file": "vitest --config vitest.file.config.ts --run",
"test:indexeddb": "vitest --config vitest.indexeddb.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 core:file",
"format": "prettier .",
"check": "pnpm format --write --log-level silent && pnpm lint --quiet && pnpm test && pnpm build",
"lint": "eslint",
"drizzle:libsql": "drizzle-kit push --config ./cloud/backend/node/drizzle.cloud.libsql.config.ts",
"drizzle:d1-local": "drizzle-kit push --config ./cloud/backend/cf-d1/drizzle.cloud.d1-local.config.ts",
"drizzle:d1-remote": "drizzle-kit push --config ./cloud/backend/cf-d1/drizzle.cloud.d1-remote.config.ts",
"wrangler:cf-d1": "wrangler deploy -c cloud/backend/cf-d1/wrangler.toml --env dev",
"prepublish": "core-cli build --prepare-version",
"publish": "pnpm run -r publish"
},
"keywords": [
"ledger",
"database",
"JSON",
"immutable",
"IPLD",
"CID",
"UCAN"
],
"contributors": [
"J Chris Anderson",
"Alan Shaw",
"Travis Vachon",
"Mikeal Rogers",
"Meno Abels"
],
"devDependencies": {
"@eslint/js": "^9.39.4",
"@fireproof/core-cli": "workspace:0.0.0",
"@types/deno": "^2.5.0",
"@types/node": "^25.3.5",
"@typescript/native-preview": "7.0.0-dev.20260320.1",
"@vitest/browser": "^4.0.14",
"@vitest/browser-playwright": "^4.0.14",
"deno": "^2.7.5",
"drizzle-kit": "0.30.6",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"multiformats": "^13.4.2",
"playwright": "^1.58.2",
"playwright-chromium": "^1.58.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.14",
"wrangler": "^4.73.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",
"bundle-phobia": {
"max-size": "390kB",
"max-gzip-size": "110kB",
"max-overall-size": "1MB"
},
"pnpm": {
"onlyBuiltDependencies": [
"@clerk/shared",
"core-js",
"deno",
"edgedriver",
"esbuild",
"msw",
"playwright-chromium",
"workerd"
],
"patchedDependencies": {
"drizzle-kit": "patches/drizzle-kit.patch"
}
}
}