-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.34 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.34 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
{
"private": true,
"scripts": {
"build": "turbo run build --filter='!./examples/*' --filter='!./packages/site'",
"build:docs": "turbo run build --filter=@cofhe/site",
"dev": "turbo run dev",
"test": "turbo run test",
"test:integration": "pnpm --filter \"./packages/hardhat-plugin-test\" test:integration",
"lint": "turbo run lint",
"check:types": "turbo run check:types",
"check:circles": "node scripts/check-circular.js",
"check:formatting": "prettier --check \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"coverage": "turbo run coverage",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"changeset": "changeset && pnpm format",
"version-packages": "changeset version",
"release": "pnpm run build && changeset publish",
"beta:snapshot": "changeset version --snapshot beta && pnpm -r build && changeset publish --tag beta",
"docs": "pnpm --filter @cofhe/site dev"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^8.57.0",
"madge": "^8.0.0",
"prettier": "^3.2.5",
"turbo": "^2.5.6",
"vitest": "^3.0.0"
},
"pnpm": {
"overrides": {
"typescript": "5.5.4"
}
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18"
},
"name": "with-changesets"
}