-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.46 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
{
"name": "@dharayush7/fireclass-react",
"version": "2.0.9",
"description": "Type-safe Firestore ODM and realtime React hooks using Firebase client SDK, with validated models, typed queries, useQuery, and useDoc.",
"license": "MIT",
"author": {
"name": "Ayush Dhar",
"email": "contact@ayushdhar.com",
"url": "https://www.ayushdhar.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dharayush7/fireclass-react.git"
},
"homepage": "https://fireclass.ayushdhar.com/docs/api/react",
"bugs": {
"url": "https://github.com/dharayush7/fireclass-react/issues"
},
"keywords": [
"fireclass",
"firestore",
"firebase",
"firebase-client",
"firebase-web",
"firestore-orm",
"firebase-orm",
"typescript-orm",
"odm",
"object-document-mapper",
"firestore-model",
"typed-firestore",
"firestore-typescript",
"react",
"react-hooks",
"hooks",
"realtime",
"onsnapshot",
"orm",
"model",
"data-modeling",
"crud",
"database",
"nosql",
"typescript",
"type-safe",
"validation",
"class-validator",
"class-transformer",
"query-builder",
"usequery",
"usedoc"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"RELEASE_NOTES.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"peerDependencies": {
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"firebase": "^10.0.0 || ^11.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.1.0",
"@types/node": "^24.13.3",
"@types/react": "^18.3.12",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"firebase": "^11.1.0",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@dharayush7/fireclass-core": "^2.0.8"
}
}