-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "framework-kit",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.20.0",
"pnpm": {
"overrides": {
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
"fast-xml-parser@>=4.3.6 <=5.3.3": ">=5.3.4",
"minimatch@<3.1.3": "3.1.3",
"bn.js@>=5.0.0 <5.2.3": ">=5.2.3"
}
},
"scripts": {
"dev": "turbo run dev --parallel",
"dev:react": "pnpm --filter @solana/example-vite-react dev",
"build": "turbo run build",
"format": "turbo run format",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"size": "pnpm build && size-limit",
"prepare": "husky",
"check:circular-deps": "turbo run check:circular-deps",
"changeset": "changeset",
"version:packages": "changeset version",
"publish-packages": "changeset publish --filter @solana/client --filter @solana/react-hooks --filter @solana/web3-compat"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@size-limit/preset-small-lib": "^12.0.0",
"@solana/codecs-strings": "^6.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@vitest/coverage-v8": "^4.0.7",
"bs58": "^6.0.0",
"husky": "^9.1.7",
"jsdom": "^24.1.0",
"size-limit": "^12.0.0",
"tsup": "^8.5.0",
"turbo": "^2.6.0",
"typescript": "^5.6.3",
"vitest": "^4.0.7"
}
}