-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "root",
"type": "module",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"generate": "turbo run generate",
"postgenerate": "pnpm run lint:write",
"postinstall": "turbo run build --filter='./templates/*' --filter='halp'",
"build": "pnpm run build:libs",
"postbuild": "pnpm run lint:write",
"build:libs": "turbo run build --filter='./templates/*' --filter='./packages/*'",
"clean": "pnpm run clean:turbo && pnpm run clean:node_modules",
"clean:turbo": "turbo run clean",
"clean:node_modules": "lerna clean -y && rm -rf node_modules",
"test": "vitest dev",
"test:ci": "vitest run",
"test:typecheck": "TYPECHECK=true vitest --typecheck --typecheck.only run",
"lint:write": "eslint . --fix && prettier --log-level warn --write --ignore-unknown .",
"lint:check": "eslint . && prettier --check .",
"lint:docs": "vale docs/**/*.mdx",
"prepare": "husky install",
"docs:broken-links": "lychee docs --root-dir /docs",
"docs:sdk": "pnpm run build && typedoc && tsx scripts/generate-typedoc-yaml.ts",
"version": "pnpm run build:libs"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@tanstack/react-query": "^5.28.9",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.12.0",
"add": "^2.0.6",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint": "^8.51.0",
"eslint-config-react-app": "^7.0.1",
"eslint-formatter-github": "1.1.4",
"eslint-formatter-rdjson": "^1.0.6",
"eslint-plugin-eslint-rules": "workspace:*",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-mdx": "^3.1.5",
"halp": "workspace:*",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jiti": "^2.4.2",
"js-yaml": "^4.2.0",
"jsdom": "^25.0.1",
"lerna": "^8.0.2",
"lint-staged": "^13.2.2",
"markdownlint": "^0.38.0",
"mdx2vast": "^0.3.0",
"node-fetch": "^3.3.1",
"prettier": "3.3.3",
"prool": "^0.0.15",
"remark-mdx": "^3.1.1",
"tsx": "^4.20.5",
"turbo": "^2.2.3",
"typedoc": "^0.28.13",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.8.1",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^5.8.3",
"viem": "^2.45.0",
"vite": "^7.3.5",
"vitest": "^4.1.8",
"wagmi": "2.16.9",
"webauthn-p256": "^0.0.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "is-ci || lint-staged",
"commit-msg": "npx --no -- commitlint --edit ${1}"
}
},
"lint-staged": {
"**/*.{mdx,js,jsx,ts,tsx}": [
"eslint --fix --max-warnings 0 --ignore-pattern '!.vitest'",
"prettier --write"
],
"**/*.{yaml,yml}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"wagmi": "2.16.9",
"viem": "^2.45.0",
"@noble/hashes": "^1.4.0",
"@noble/curves": "^1.4.0",
"eslint-plugin-react-hooks": "4.6.0"
}
},
"workspaces": [
"templates/*",
".vitest",
"halp",
"packages/*"
]
}