-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.33 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
{
"name": "stakekit",
"keywords": [
"stakekit",
"widget"
],
"author": "Petar Todorovic <petar@omni.app> (https://github.com)",
"license": "MIT",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.19.0"
}
},
"scripts": {
"dev": "pnpm --filter @stakekit/widget dev",
"build": "turbo run build",
"lint": "turbo run lint //#lint:ast",
"lint:ast": "ast-grep scan --error=no-suppress-all --error=unused-suppression packages/widget --color=never && pnpm run test:ast",
"test:ast": "ast-grep test --skip-snapshot-tests --color=never",
"test": "turbo run test",
"test:smoke": "pnpm --filter @stakekit/widget test:smoke",
"format": "turbo run format",
"clean": "turbo run clean",
"prepare": "husky && pnpm --filter @stakekit/widget exec effect-tsgo patch --typescript --no-oxlint --typescript-package @typescript/native",
"check-hygiene": "turbo run check-hygiene --filter=@stakekit/widget",
"check": "turbo run lint //#lint:ast && pnpm run check-hygiene && turbo run test && turbo run build"
},
"devDependencies": {
"@ast-grep/cli": "catalog:",
"@biomejs/biome": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@effect/tsgo": "catalog:",
"husky": "catalog:",
"turbo": "catalog:"
}
}