-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.7 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
{
"name": "astro-gravatar-monorepo",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint packages/astro-gravatar/src --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "bun run build:package && bun run docs:build",
"build:package": "cd packages/astro-gravatar && bun run build",
"docs:build": "cd apps/astro-gravatar.and.guide && bun run build",
"pages:check": "bun scripts/cloudflare-pages.ts check",
"pages:dev": "bun scripts/cloudflare-pages.ts dev",
"pages:deploy": "bun scripts/cloudflare-pages.ts deploy",
"pages:deploy:preview": "bun scripts/cloudflare-pages.ts deploy-preview",
"upstream:gravatar": "bun scripts/gravatar-upstream-watch.ts",
"test": "cd packages/astro-gravatar && bun test",
"test:watch": "cd packages/astro-gravatar && bun test --watch",
"test:coverage": "cd packages/astro-gravatar && bun run test:coverage",
"dev": "cd apps/astro-gravatar.and.guide && bun run dev",
"typecheck": "bun run typecheck:package",
"typecheck:package": "cd packages/astro-gravatar && bun run typecheck",
"pack": "cd packages/astro-gravatar && bun pm pack",
"pack:preview": "cd packages/astro-gravatar && bun pm pack --dry-run",
"pkg:get": "cd packages/astro-gravatar && bun pm pkg get",
"pkg:fix": "cd packages/astro-gravatar && bun pm pkg fix",
"pkg:version": "cd packages/astro-gravatar && bun pm version",
"release:check": "bun run lint && bun run typecheck && bun run test && bun run build:package && cd packages/astro-gravatar && bun pm pack --dry-run",
"sampo:add": "sampo add",
"sampo:pre": "sampo pre",
"sampo:preview": "sampo release --dry-run",
"sampo:release": "sampo release",
"security:check": "bun scripts/security-audit.ts",
"security:check:strict": "bun audit",
"clean": "bun run clean:all",
"clean:all": "rm -rf node_modules packages/*/node_modules apps/*/node_modules bun.lockb && bun install"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.61.1",
"wrangler": "^4.101.0"
},
"peerDependencies": {
"typescript": "^5"
},
"workspaces": [
"packages/*",
"apps/*"
],
"catalog": {
"astro": "^6.4.7",
"@types/node": "^22.0.0"
},
"overrides": {
"brace-expansion": "5.0.6",
"esbuild": "0.28.1",
"flatted": "3.4.2",
"js-yaml": "4.2.0",
"postcss": "8.5.15",
"rollup": "4.62.0",
"vite": "7.3.5",
"ws": "8.21.0"
}
}