-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 KB
/
package.json
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
50
51
{
"name": "xmtp-agent-examples",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"examples/*",
"integrations/*"
],
"scripts": {
"build": "tsc",
"clean": "rimraf node_modules && yarn clean:dbs",
"clean:dbs": "rimraf *.db3* ||:",
"examples:gated": "tsx --env-file=.env examples/gated-group/index.ts",
"examples:gm": "tsx --env-file=.env examples/gm/index.ts",
"examples:gpt": "tsx --env-file=.env examples/gpt/index.ts",
"format": "prettier -w .",
"format:check": "prettier -c .",
"gen:keys": "tsx scripts/generateKeys.ts",
"lint": "eslint .",
"typecheck": "tsc"
},
"dependencies": {
"@xmtp/node-sdk": "1.0.0-rc2",
"alchemy-sdk": "^3.0.0",
"openai": "latest",
"uint8arrays": "^5.1.0",
"viem": "^2.22.17"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.13.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=20"
}
}