-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 4.77 KB
/
package.json
File metadata and controls
161 lines (161 loc) · 4.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@owlprotocol/core-firebase",
"version": "3.1.2",
"keywords": [
"database"
],
"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": "leo@owlprotocol.xyz",
"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"
},
"./utils": {
"types": "./lib/types/utils/index.d.ts",
"require": "./lib/cjs/utils/index.js",
"import": "./lib/esm/utils/index.js"
},
"./models": {
"types": "./lib/types/models/index.d.ts",
"require": "./lib/cjs/models/index.js",
"import": "./lib/esm/models/index.js"
},
"./models/*": {
"types": "./lib/types/models/*.d.ts",
"require": "./lib/cjs/models/*.js",
"import": "./lib/esm/models/*.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"
},
"./react-query": {
"types": "./lib/types/query/index.d.ts",
"require": "./lib/cjs/query/index.js",
"import": "./lib/esm/query/index.js"
},
"./data": {
"types": "./lib/types/data/index.d.ts",
"require": "./lib/cjs/data/index.js",
"import": "./lib/esm/data/index.js"
},
"./data-demo": {
"types": "./lib/types/data/index-demo.d.ts",
"require": "./lib/cjs/data/index-demo.js",
"import": "./lib/esm/data/index-demo.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",
"dev": "npm run firebase-emulator",
"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",
"scripts:uploadData": "tsx src/scripts/runUploadData.ts",
"scripts:uploadTestData": "tsx src/scripts/runUploadTestData.ts",
"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/crud-firebase": "workspace:*",
"@owlprotocol/eth-firebase": "workspace:*",
"@owlprotocol/envvars": "workspace:*",
"@owlprotocol/zod-sol": "workspace:*",
"lodash-es": "4.17.21",
"uuid": "^9.0.1",
"viem": "2.21.19",
"zod": "3.22.4"
},
"peerDependencies": {
"firebase": "^10.3.1",
"firebase-admin": "^12.1.0"
},
"devDependencies": {
"@google-cloud/storage": "^7.7.0",
"@owlprotocol/esbuild-config": "workspace:*",
"@owlprotocol/eslint-config": "workspace:*",
"@owlprotocol/prettier-config": "workspace:*",
"@owlprotocol/tsconfig": "workspace:*",
"@types/lodash-es": "4.17.12",
"@types/node": "^20.11.10",
"@types/uuid": "^9.0.8",
"eslint": "^8.55.0",
"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",
"rimraf": "^3.0.2",
"ts-expect": "^1.3.0",
"tsx": "^4.11.0",
"typescript": "5.4.5",
"vite": "^5.1.6",
"winston": "^3.12.0",
"vitest": "^1.4.0",
"@typescript/analyze-trace": "^0.10.1",
"depcheck": "^1.4.7"
},
"contributors": [
{
"name": "Leo Vigna",
"email": "leo@owlprotocol.xyz",
"url": "https://github.com/leovigna"
},
{
"name": "Oscar Baracos",
"email": "oscar@owlprotocol.xyz",
"url": "https://github.com/OscBacon"
}
],
"bugs": {
"url": "https://github.com/owlprotocol/workspace-public/issues",
"email": "leo@owlprotocol.xyz"
},
"funding": "https://owlprotocol.xyz",
"engines": {
"node": "^18.0.0"
}
}