@quotalayer/contracts 0.1.0-alpha.1

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/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@quotalayer/contracts",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "Runtime schemas and TypeScript contracts for the QuotaLayer API.",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/wangxpych/quotalayer.git",
9
+ "directory": "packages/contracts"
10
+ },
11
+ "homepage": "https://github.com/wangxpych/quotalayer#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/wangxpych/quotalayer/issues"
14
+ },
15
+ "keywords": [
16
+ "quota",
17
+ "credits",
18
+ "metering",
19
+ "entitlements",
20
+ "ai"
21
+ ],
22
+ "engines": {
23
+ "node": ">=22.0.0"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "type": "module",
29
+ "exports": {
30
+ ".": {
31
+ "development": "./src/index.ts",
32
+ "types": "./dist/index.d.ts",
33
+ "import": "./dist/index.js"
34
+ }
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md"
39
+ ],
40
+ "scripts": {
41
+ "build": "tsup src/index.ts --format esm --dts --clean",
42
+ "clean": "rimraf dist",
43
+ "typecheck": "tsc --noEmit"
44
+ },
45
+ "dependencies": {
46
+ "@sinclair/typebox": "0.34.52"
47
+ }
48
+ }