-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 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
{
"name": "@pyhall/core",
"version": "0.3.0",
"description": "PyHall TypeScript \u2014 WCP Worker Class Protocol reference implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"wcp",
"workers",
"agents",
"governance",
"ai",
"protocol"
],
"license": "Apache-2.0",
"homepage": "https://pyhall.dev",
"repository": {
"type": "git",
"url": "https://github.com/pyhall/pyhall-typescript.git"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0"
},
"peerDependencies": {
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
}
}