-
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) · 2.03 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.03 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": "@txkit/mono",
"version": "0.0.1",
"private": true,
"description": "txKit monorepo - React components for Web3",
"homepage": "https://txkit.dev",
"bugs": {
"url": "https://github.com/txkit/mono/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/txkit/mono.git"
},
"license": "MIT",
"author": "Michael Diamond",
"type": "commonjs",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean",
"lint": "turbo run lint",
"lint:style": "eslint . --max-warnings 50",
"lint:style:fix": "eslint . --fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"size": "pnpm --filter \"./packages/{core,react,themes,tx-protocol,tx-decoder,ows-adapter,x402-adapter}\" exec size-limit",
"size:why": "pnpm --filter \"./packages/{core,react,themes,tx-protocol,tx-decoder,ows-adapter,x402-adapter}\" exec size-limit --why",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"pnpm": {
"overrides": {
"axios@<1.15.0": "^1.15.0",
"follow-redirects@<1.16.0": "^1.16.0",
"vite@<8.0.8": "^8.0.8",
"picomatch@<4.0.4": "^4.0.4",
"brace-expansion@<5.0.5": "^5.0.5",
"defu@<6.1.7": "^6.1.7",
"yaml@<2.8.3": "^2.8.3",
"h3@<1.15.11": "^1.15.11",
"lodash@<4.18.1": "^4.18.1",
"lodash-es@<4.18.1": "^4.18.1",
"hono@<4.12.12": "^4.12.12",
"@hono/node-server@<1.19.14": "^1.19.14"
}
},
"packageManager": "pnpm@10.0.0",
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@size-limit/preset-small-lib": "^12.1.0",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"size-limit": "^12.1.0",
"turbo": "^2.9.6",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.1"
}
}