@worker-protocol/schemas 0.1.0
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/LICENSE +201 -0
- package/NOTICE +9 -0
- package/dist/index.d.ts +671 -0
- package/dist/index.js +1075 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@worker-protocol/schemas",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"workerProtocolEdition": "0.1",
|
|
5
|
+
"description": "The Zod objects that generate the worker-protocol JSON Schemas, and the way to consume them from TypeScript",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/rowing-tech/worker-protocol.git",
|
|
10
|
+
"directory": "packages/schemas"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/rowing-tech/worker-protocol#readme",
|
|
13
|
+
"bugs": "https://github.com/rowing-tech/worker-protocol/issues",
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"default": "./dist/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"NOTICE"
|
|
30
|
+
],
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"zod": "^4.5.4"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "26.5.1",
|
|
36
|
+
"typescript": "7.0.2",
|
|
37
|
+
"vitest": "5.0.0",
|
|
38
|
+
"zod": "4.5.4"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
42
|
+
"build": "tsc -p tsconfig.build.json",
|
|
43
|
+
"test": "vitest run"
|
|
44
|
+
}
|
|
45
|
+
}
|