-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 2.42 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
62
63
64
{
"name": "@xmtp/bot-tools",
"version": "1.0.0",
"description": "A collection of tools for running high quality bots in Node.js",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "turbo run build",
"publish": "yarn build && changeset publish",
"release": "yarn workspaces foreach --no-private --all npm publish --access public --tolerate-republish && changeset tag",
"test": "turbo run test",
"fresh": "find . -name 'node_modules' -type d -exec rm -rf {} + && find . -name 'dist' -type d -exec rm -rf {} + && yarn cache clean && yarn install && yarn build && yarn test --scope=@xmtp/bot-kit-pro && yarn test --scope=@xmtp/redis-persistence && yarn test --scope=@xmtp/bot-starter && yarn test --scope=@xmtp/bot-examples && yarn test --scope=@xmtp/grpc-api-client && yarn test --scope=@xmtp/fs-persistence && yarn test --scope=@xmtp/cli-starter ",
"fresh2": "find . -name 'node_modules' -type d -exec rm -rf {} + && find . -name 'dist' -type d -exec rm -rf {} + && yarn cache clean && yarn install && yarn build --scope=@xmtp/cli-starter && yarn test --scope=@xmtp/cli-starter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xmtp/bot-kit-pro.git"
},
"keywords": [
"xmtp",
"bots",
"node",
"messaging"
],
"author": "XMTP Engineering <eng@xmtp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xmtp/bot-kit-pro/issues"
},
"homepage": "https://github.com/xmtp/bot-kit-pro#readme",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.7",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-vitest": "^0.3.21",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"turbo": "^1.13.2",
"typescript": "^5.4.5",
"vitest": "^0.34.6"
},
"packageManager": "yarn@4.0.2"
}