Skip to content

Commit 6ad2da9

Browse files
committed
feat: add root-level validation workflow scripts (lint, typecheck, test, validate)
1 parent e1b37c5 commit 6ad2da9

1 file changed

Lines changed: 13 additions & 32 deletions

File tree

package.json

Lines changed: 13 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,19 @@
11
{
2-
"name": "onchainkit-monorepo",
3-
"description": "",
4-
"main": "index.js",
2+
"name": "onchainkit",
3+
"private": true,
54
"scripts": {
6-
"test": "echo \"Error: no test specified\" && exit 1",
75
"build": "pnpm -r run build",
8-
"clean:node_modules": "rm -rf node_modules packages/*/node_modules",
9-
"f:ock": "pnpm --filter @coinbase/onchainkit",
10-
"f:play": "pnpm --filter playground",
11-
"f:create": "pnpm --filter create-onchain",
12-
"f:manifest": "pnpm --filter miniapp-manifest-generator",
13-
"f:minikit-example": "pnpm --filter minikit-example",
14-
"changeset": "changeset",
15-
"release:check": "changeset status --verbose --since=origin/main",
16-
"release:publish": "changeset publish"
6+
"dev": "pnpm -r run dev",
7+
"lint": "pnpm -r run lint",
8+
"typecheck": "pnpm -r run typecheck",
9+
"test": "pnpm -r run test",
10+
"validate": "pnpm run lint && pnpm run typecheck && pnpm run test",
11+
"format": "prettier --write .",
12+
"format:check": "prettier --check .",
13+
"clean": "pnpm -r run clean"
1714
},
18-
"keywords": [],
19-
"author": "",
20-
"license": "MIT",
2115
"devDependencies": {
22-
"@actions/core": "^1.11.1",
23-
"@changesets/cli": "^2.27.10",
24-
"@changesets/get-github-info": "^0.6.0",
25-
"@eslint/js": "^9.22.0",
26-
"concurrently": "^8.0.0",
27-
"eslint": "^9.22.0",
28-
"eslint-config-prettier": "^10.1.1",
29-
"eslint-plugin-prettier": "^5.2.3",
30-
"eslint-plugin-react": "^7.37.4",
31-
"eslint-plugin-react-hooks": "^5.2.0",
32-
"globals": "^16.0.0",
33-
"prettier": "^3.5.3",
34-
"typescript": "~5.8.3",
35-
"typescript-eslint": "^8.26.1"
16+
"prettier": "^3.2.5"
3617
},
37-
"packageManager": "pnpm@10.6.3"
38-
}
18+
"packageManager": "pnpm@9.15.4"
19+
}

0 commit comments

Comments
 (0)