@lucern/contracts 1.0.57 → 1.0.58

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/CHANGELOG.md CHANGED
@@ -184,3 +184,6 @@ All notable changes to `@lucern/contracts` are tracked in this repository.
184
184
 
185
185
  ## [1.0.57] - 2026-07-03
186
186
  - Release notes pending.
187
+
188
+ ## [1.0.58] - 2026-07-03
189
+ - Release notes pending.
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2024 Vercel, Inc.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -41,5 +41,5 @@
41
41
  "convex-validators",
42
42
  "proof-attestation"
43
43
  ],
44
- "signedAt": 1783073301464
44
+ "signedAt": 1783074258533
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucern/contracts",
3
- "version": "1.0.57",
3
+ "version": "1.0.58",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -203,13 +203,6 @@
203
203
  "import": "./dist/*.js"
204
204
  }
205
205
  },
206
- "scripts": {
207
- "build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && LUCERN_CONTRACTS_SKIP_DTS=1 tsup && LUCERN_CONTRACTS_SKIP_DTS=1 node scripts/emit-declarations-if-skipped.cjs && node scripts/copy-generated-json.cjs",
208
- "postbuild": "test ! -f ../../dist/proof-attestation.json || cp ../../dist/proof-attestation.json dist/proof-attestation.json",
209
- "prepack": "npm run build",
210
- "test": "vitest run --config vitest.config.ts",
211
- "typecheck": "tsc --noEmit"
212
- },
213
206
  "dependencies": {
214
207
  "convex": "^1.39.1",
215
208
  "typescript": "^5.7.0",
@@ -217,5 +210,11 @@
217
210
  },
218
211
  "devDependencies": {
219
212
  "tsup": "^8.5.0"
213
+ },
214
+ "scripts": {
215
+ "build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && LUCERN_CONTRACTS_SKIP_DTS=1 tsup && LUCERN_CONTRACTS_SKIP_DTS=1 node scripts/emit-declarations-if-skipped.cjs && node scripts/copy-generated-json.cjs",
216
+ "postbuild": "test ! -f ../../dist/proof-attestation.json || cp ../../dist/proof-attestation.json dist/proof-attestation.json",
217
+ "test": "vitest run --config vitest.config.ts",
218
+ "typecheck": "tsc --noEmit"
220
219
  }
221
- }
220
+ }