@powerhousedao/contributor-billing 1.0.0-dev.13 → 1.0.0-dev.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editors/snapshot-report-editor/editor.d.ts.map +1 -1
- package/dist/editors/snapshot-report-editor/editor.js +129 -20
- package/dist/editors/snapshot-report-editor/hooks/useSyncSnapshotAccount.d.ts +2 -1
- package/dist/editors/snapshot-report-editor/hooks/useSyncSnapshotAccount.d.ts.map +1 -1
- package/dist/editors/snapshot-report-editor/hooks/useSyncSnapshotAccount.js +29 -12
- package/dist/style.css +2616 -357
- package/package.json +15 -10
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/contributor-billing",
|
|
3
3
|
"description": "Document models that help contributors of open organisations get paid anonymously for their work on a monthly basis.",
|
|
4
|
-
"version": "1.0.0-dev.
|
|
4
|
+
"version": "1.0.0-dev.15",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/powerhouse-inc/contributor-billing"
|
|
8
|
+
"url": "git+https://github.com/powerhouse-inc/contributor-billing.git"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"files": [
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"@powerhousedao/common": "5.3.4",
|
|
75
75
|
"@powerhousedao/design-system": "5.3.4",
|
|
76
76
|
"@powerhousedao/document-engineering": "^1.40.1",
|
|
77
|
-
"@powerhousedao/service-offering": "0.0.
|
|
78
|
-
"@powerhousedao/vetra": "
|
|
77
|
+
"@powerhousedao/service-offering": "0.0.17",
|
|
78
|
+
"@powerhousedao/vetra": "5.3.4",
|
|
79
79
|
"@react-pdf/renderer": "^4.3.1",
|
|
80
80
|
"@safe-global/api-kit": "^4.0.0",
|
|
81
81
|
"@safe-global/protocol-kit": "^6.0.3",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@types/cors": "^2.8.17",
|
|
85
85
|
"axios": "^1.9.0",
|
|
86
86
|
"cors": "^2.8.5",
|
|
87
|
-
"document-model": "5.3.4",
|
|
87
|
+
"document-model": "^5.3.4",
|
|
88
88
|
"dotenv": "^16.5.0",
|
|
89
89
|
"error": "^10.4.0",
|
|
90
90
|
"ethers": "^6.14.0",
|
|
@@ -109,6 +109,8 @@
|
|
|
109
109
|
"@powerhousedao/reactor-local": "5.3.4",
|
|
110
110
|
"@powerhousedao/scalars": "^2.0.1",
|
|
111
111
|
"@powerhousedao/switchboard": "5.3.4",
|
|
112
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
113
|
+
"@semantic-release/git": "^10.0.1",
|
|
112
114
|
"@tailwindcss/cli": "^4.1.4",
|
|
113
115
|
"@testing-library/react": "^16.3.0",
|
|
114
116
|
"@types/node": "^24.9.2",
|
|
@@ -126,14 +128,12 @@
|
|
|
126
128
|
"pm2": "^5.4.3",
|
|
127
129
|
"react": "^19.2.0",
|
|
128
130
|
"react-dom": "^19.2.0",
|
|
131
|
+
"semantic-release": "^25.0.2",
|
|
129
132
|
"tailwindcss": "^4.1.16",
|
|
130
133
|
"typescript": "^5.9.3",
|
|
131
134
|
"typescript-eslint": "^8.46.2",
|
|
132
135
|
"vite": "^6.2.3",
|
|
133
|
-
"vitest": "^3.0.9"
|
|
134
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
135
|
-
"@semantic-release/git": "^10.0.1",
|
|
136
|
-
"semantic-release": "^25.0.2"
|
|
136
|
+
"vitest": "^3.0.9"
|
|
137
137
|
},
|
|
138
138
|
"peerDependencies": {
|
|
139
139
|
"react": "^19.2.0",
|
|
@@ -164,5 +164,10 @@
|
|
|
164
164
|
"@semantic-release/github",
|
|
165
165
|
"@semantic-release/git"
|
|
166
166
|
]
|
|
167
|
-
}
|
|
167
|
+
},
|
|
168
|
+
"bugs": {
|
|
169
|
+
"url": "https://github.com/powerhouse-inc/contributor-billing/issues"
|
|
170
|
+
},
|
|
171
|
+
"readme": "ERROR: No README data found!",
|
|
172
|
+
"homepage": "https://github.com/powerhouse-inc/contributor-billing#readme"
|
|
168
173
|
}
|