-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 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
{
"name": "@hvakr/firestate",
"version": "0.1.0",
"description": "Schema-first Firestore state management for React with real-time sync, undo/redo, and optimistic updates",
"author": "HVAKR",
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsdown src/index.ts --format esm --dts",
"dev": "tsdown src/index.ts --format esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"firebase": "^10.0.0 || ^11.0.0",
"react": "^18.0.0 || ^19.0.0",
"zod": "^3.24.0 || ^4.0.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"firebase": "^11.1.0",
"react": "^18.3.1",
"tsdown": "^0.20.0-beta.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"zod": "^4.0.0"
},
"keywords": [
"firestore",
"firebase",
"react",
"state-management",
"zod",
"schema",
"real-time",
"sync",
"undo-redo",
"optimistic-updates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hvakr/firestate.git"
},
"homepage": "https://github.com/hvakr/firestate#readme",
"bugs": {
"url": "https://github.com/hvakr/firestate/issues"
}
}