-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.63 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@owlprotocol/crud-firebase",
"version": "3.1.2",
"keywords": [
"database",
"crud"
],
"private": false,
"type": "module",
"homepage": "https://github.com/owlprotocol/workspace-public",
"repository": {
"type": "git",
"url": "https://github.com/owlprotocol/workspace-public.git"
},
"copyright": "Copyright 2024 Owl Protocol",
"license": "MIT",
"author": {
"name": "Leo Vigna",
"email": "[email protected]",
"url": "https://github.com/leovigna"
},
"files": [
"dist/*",
"lib/*",
"src/*",
"LICENSE",
"README.md"
],
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"./admin": {
"types": "./lib/types/admin/index.d.ts",
"require": "./lib/cjs/admin/index.js",
"import": "./lib/esm/admin/index.js"
},
"./web": {
"types": "./lib/types/web/index.d.ts",
"require": "./lib/cjs/web/index.js",
"import": "./lib/esm/web/index.js"
},
"./query": {
"types": "./lib/types/query/index.d.ts",
"require": "./lib/cjs/query/index.js",
"import": "./lib/esm/query/index.js"
}
},
"scripts": {
"build": "npm-run-all -p tsc esbuild",
"build:watch": "npm-run-all -p tsc:watch esbuild:watch",
"clean": "rimraf lib dist",
"depcheck": "depcheck",
"esbuild": "node esbuild.config.mjs",
"esbuild:watch": "ESBUILD_WATCH=true node esbuild.config.mjs",
"firebase-emulator": "firebase emulators:start --project demo-owl-protocol",
"firebase:exec": "firebase emulators:exec --project demo-owl-protocol",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"lint:staged": "lint-staged",
"madge": "madge src/index.ts -c",
"test": "firebase emulators:exec --project demo-owl-protocol 'pnpm run test:ci'",
"test:ci": "vitest --run",
"test:watch": "firebase emulators:exec --project demo-owl-protocol 'vitest'",
"tsc": "tsc",
"tsc:trace": "tsc --generateTrace lib/trace && analyze-trace lib/trace",
"tsc:watch": "tsc -w"
},
"dependencies": {
"@owlprotocol/envvars": "workspace:*",
"@owlprotocol/utils": "workspace:*",
"lodash-es": "4.17.21",
"mnemonist": "^0.39.8"
},
"peerDependencies": {
"@tanstack/query-core": "5.24.8",
"@tanstack/react-query": "5.24.8",
"firebase": "^10.3.1",
"firebase-admin": "^12.1.0",
"react": "^18.2.0"
},
"devDependencies": {
"@google-cloud/firestore": "^7.7.0",
"@google-cloud/storage": "^7.7.0",
"@owlprotocol/esbuild-config": "workspace:*",
"@owlprotocol/eslint-config": "workspace:*",
"@owlprotocol/prettier-config": "workspace:*",
"@owlprotocol/tsconfig": "workspace:*",
"@tanstack/query-core": "5.24.8",
"@tanstack/react-query": "5.24.8",
"@types/lodash-es": "4.17.12",
"@types/node": "^20.11.10",
"@types/uuid": "^9.0.8",
"firebase": "^10.3.1",
"firebase-admin": "^12.1.0",
"firebase-tools": "^13.16.0",
"lint-staged": "^11.2.6",
"madge": "^5.0.2",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "5.4.5",
"uuid": "^9.0.1",
"vite": "^5.1.6",
"vitest": "^1.4.0",
"winston": "^3.12.0",
"@typescript/analyze-trace": "^0.10.1",
"zod": "3.22.4",
"depcheck": "^1.4.7"
},
"bugs": {
"url": "https://github.com/owlprotocol/workspace-public/issues",
"email": "[email protected]"
},
"funding": "https://owlprotocol.xyz",
"engines": {
"node": "^18.0.0"
}
}