-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 808 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 808 Bytes
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
{
"name": "wave-toolkit",
"version": "1.0.0",
"description": "> **\"From one builder to another - philosophy, mechanics, and everything between.\"**",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"wave-toolkit": "./dist/cli.js"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"wave",
"handshake",
"protocol",
"multi-agent",
"coordination"
],
"author": "toolate28",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}