-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 2.58 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
52
53
54
55
56
57
58
59
60
61
{
"name": "xmtp-ai",
"version": "1.2.35",
"private": true,
"type": "module",
"workspaces": [
"templates/*",
"packages/*",
"shared/*"
],
"scripts": {
"agent": "yarn build:xmtp-e2ee && cd packages/client && yarn dev",
"build": "yarn build:message-kit && yarn build:packages && yarn build:templates",
"build:client": "turbo run build --filter=./packages/client --force",
"build:message-kit": "turbo run build --filter=./packages/message-kit --force",
"build:packages": "turbo run build --filter='./packages/*' --filter='!./packages/message-kit'",
"build:templates": "turbo run build --filter='./templates/*'",
"build:xmtp": "turbo run build --filter=./packages/xmtp --force",
"build:xmtp-e2ee": "turbo run build --filter=./packages/xmtp-e2ee --force",
"bump": "node scripts/update-version.js -t patch",
"changeset": "yarn copy && changeset add --type patch",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo && rm -rf packages/message-kit/dist && rm -rf packages/message-kit/.turbo && rm -rf packages/docs/dist && yarn cache clean",
"cli": "node packages/create-message-kit/index.js",
"copy": "node scripts/copyTemplates.js",
"dev": "yarn build:xmtp && cd packages/message-kit && yarn build:watch",
"docs": "cd packages/docs && yarn dev",
"domain": "ngrok http --hostname=frames.ngrok.app 3000",
"format": "turbo run format",
"links": " cd packages/baselinks && yarn dev",
"play": "cd templates/playground && yarn dev",
"publish": "yarn install && yarn build && yarn copy && node scripts/publish.js",
"templates": "node scripts/devTemplates.js",
"test": "FORCE_COLOR=1 turbo run test --force --concurrency=1",
"test:client": "cd packages/xmtp/tests && yarn test:client",
"test:flow": "cd packages/message-kit/tests && yarn test:flow",
"test:intent": "cd packages/message-kit/tests && yarn test:intent",
"test:links": "cd packages/message-kit/tests && yarn test:links",
"test:parsing": "cd packages/message-kit/tests && yarn test:parsing",
"test:prompt": "cd packages/message-kit/tests && yarn test:prompt",
"typecheck": "FORCE_COLOR=1 turbo run typecheck"
},
"resolutions": {
"viem": "^2.16.3"
},
"dependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.5",
"punycode": "^2.3.1",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"prettier": "^3.3.1",
"prettier-plugin-packagejson": "^2.5.0",
"turbo": "^1.13.4",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}