-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "bot-chain-tools",
"private": true,
"version": "0.1.0",
"description": "BOT Chain developer tools monorepo — scaffold, deploy, and ship dApps on BOT Chain",
"license": "Apache-2.0",
"author": "Eldevode <ayoelpraise@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/klips-tooling/bot-cli.git"
},
"bugs": {
"url": "https://github.com/klips-tooling/bot-cli/issues"
},
"homepage": "https://klips-tooling.github.io/bot-cli",
"keywords": [
"blockchain",
"web3",
"bot-chain",
"dapp",
"scaffold",
"cli",
"solidity",
"foundry",
"typescript",
"nextjs",
"react",
"wagmi",
"viem"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky",
"publish": "turbo run build && cd packages/cli && npm publish --access public",
"botdev": "node packages/cli/dist/index.js",
"link-local": "mkdir -p ~/.bun/bin && printf '#!/bin/bash\\nNODE_PATH=\\\"'$(pwd)'/packages/cli/node_modules\\\" node \\\"'$(pwd)'/packages/cli/dist/index.js\\\" \\\"$@\\\"\\n' > ~/.bun/bin/bot-cli-local && chmod +x ~/.bun/bin/bot-cli-local && echo '✓ bot-cli-local linked!'"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.12.0",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.1.1",
"prettier": "^3.9.6",
"ts-node": "^10.9.2",
"turbo": "^2.0.0",
"typescript": "^5.4.0"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "pnpm@9.0.0"
}