-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 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
{
"name": "@effectai/worker",
"version": "1.0.0",
"description": "",
"main": "./dist/index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup --config ../../tsup.config.package.ts",
"dev": "tsup --config ../../tsup.config.package.ts --platform neutral --watch"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.9.0",
"dependencies": {
"@effectai/protocol-core": "workspace:*",
"@effectai/protobufs": "workspace:*",
"@libp2p/ping": "^2.0.29",
"@libp2p/webrtc": "^5.0.14"
},
"devDependencies": {
"typescript": "^5.8.3",
"@types/node": "^22.15.21",
"ulid": "3.0.0"
}
}