-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpnpm-workspace.yaml
More file actions
76 lines (72 loc) · 2.31 KB
/
Copy pathpnpm-workspace.yaml
File metadata and controls
76 lines (72 loc) · 2.31 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
72
73
74
75
76
allowBuilds:
'@firebase/util': true
'@swc/core': true
core-js: true
esbuild: true
protobufjs: true
sharp: true
simple-git-hooks: true
vue-demi: true
patchedDependencies:
astro: patches/astro.patch
'@astrojs/vercel': patches/@astrojs__vercel.patch
'vite-plugin-monaco-editor@1.1.0': patches/vite-plugin-monaco-editor@1.1.0.patch
overrides:
h3: 1.15.11
'path-to-regexp@^6': 6.3.0
'minimatch@^10': 10.2.5
'undici@^5||^6': 6.28.0
'undici@^7': 7.29.0
'ajv@^8': 8.20.0
'svgo@^3': 3.3.4
'svgo@^4': 4.0.2
dompurify: 3.4.13
'yauzl@^3': 3.4.0
'yaml@^2': 2.8.3
'smol-toml@^1': 1.7.1
'defu@^6': 6.1.7
protobufjs: 7.6.5
uuid: 11.1.1
'postcss@<8.5.25': 8.5.25
'@grpc/grpc-js': 1.9.16
'@babel/core@^7': 7.29.6
esbuild: 0.28.1
'markdown-it@^14': 14.2.0
'@opentelemetry/core': 2.8.0
astro-auto-import: 0.5.2
'tar@^7': 7.5.21
'brace-expansion@^1': 1.1.18
'brace-expansion@^2': 2.1.4
'brace-expansion@>=3': 5.0.9
'form-data@^4': 4.0.6
'js-yaml@^3': 3.15.1
'js-yaml@^4': 4.3.1
fast-uri: 3.1.5
shell-quote: 1.10.0
'linkify-it@^5': 5.0.2
ts-deepmerge: 8.0.0
sharp: 0.35.3
'@iconify/tools': 5.0.12
'nanoid@^3': 3.3.18
'nanoid@^4||^5': 5.1.16
# pnpm settings for this project. Although this repository is not a multi-package
# workspace, pnpm-workspace.yaml is the canonical location for pnpm settings
# (and the only supported location starting in pnpm 11, which stops reading
# non-auth settings from .npmrc).
#
# Refuse to install a published version of any package until it has been on the
# registry for at least 48 hours. This matches Aikido Safe Chain's default
# minimum package age (enforced in CI via aptos-labs/actions/aikidosec-safe-chain)
# so local `pnpm install` and CI cannot drift. The value is in minutes:
# 2 days * 24 hours * 60 minutes = 2880.
#
# Reference: https://pnpm.io/settings#minimumreleaseage
# Aikido Safe Chain: https://github.com/AikidoSec/safe-chain
minimumReleaseAge: 2880
# When `pnpm add <pkg>` records a new dependency, write the exact installed
# version (e.g. "1.2.3") instead of a fuzzy range (e.g. "^1.2.3" or "~1.2.3").
# Combined with the pinned versions in package.json, this guarantees that every
# install resolves to the exact set of versions captured in pnpm-lock.yaml.
#
# Reference: https://pnpm.io/settings#saveexact
saveExact: true