-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "@effectai/manager",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup --config ../../tsup.config.package.ts",
"dev": "tsup --config ../../tsup.config.package.ts --watch src"
},
"exports": {
".": {
"import": "./dist/index.js"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.9.0",
"dependencies": {
"pino": "9.6.0",
"pino-pretty": "^13.0.0",
"ulid": "3.0.0",
"@effectai/protocol-core": "workspace:*",
"@effectai/protobufs": "workspace:*",
"@effectai/payment": "workspace:*",
"@libp2p/interface": "^2.7.0",
"@solana/web3.js": "^1.98.2",
"@remix-run/express": "^2.16.5",
"datastore-level": "^11.0.1",
"express": "^4.18.2",
"cors": "^2.8.5",
"bs58": "^6.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"typescript": "^5.8.3",
"@remix-run/node": "^2.16.5",
"@remix-run/react": "^2.16.5"
}
}