Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Block packages published < 7 days ago
npmMinimalAgeGate: 10080

# Disable ALL lifecycle scripts (postinstall, etc.)
enableScripts: false
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Disabling all lifecycle scripts globally will block the postinstall scripts defined in cre/attestation/package.json and cre/verification/package.json. These scripts appear to be essential for the project's setup, specifically for running cre-setup and building the @save/core dependency. This change will break the automated installation process. To maintain supply chain protection while allowing these specific scripts, consider allow-listing them using dependenciesMeta in your package.json or ensure that the setup process is updated to include manual execution of these scripts.


defaultSemverRangePrefix: ""
nodeLinker: node-modules
10 changes: 5 additions & 5 deletions cre/attestation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"postinstall": "bun run setup && (bun run build:save || echo 'Warning: @save/core build failed, run bun run build:save manually')"
},
"dependencies": {
"@chainlink/cre-sdk": "^1.0.9",
"@chainlink/cre-sdk": "1.0.9",
"@save/core": "git+ssh://git@github.com:llama-risk/save.git#v0.1.0",
"@noble/hashes": "^1.6.1",
"pako": "^2.1.0",
"@noble/hashes": "1.6.1",
"pako": "2.1.0",
"viem": "2.34.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/bun": "1.2.21",
"@types/pako": "^2.0.3",
"typescript": "^5.7.2"
"@types/pako": "2.0.3",
"typescript": "5.7.2"
}
}
10 changes: 5 additions & 5 deletions cre/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"name": "midas-por-workflows",
"private": true,
"dependencies": {
"@chainlink/cre-sdk": "^1.0.9",
"@noble/hashes": "^1.6.1",
"@chainlink/cre-sdk": "1.0.9",
"@noble/hashes": "1.6.1",
"save-attestation-workflow": "./attestation",
"save-verification-workflow": "./verification",
"pako": "^2.1.0",
"pako": "2.1.0",
"viem": "2.34.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/bun": "1.2.21",
"@types/pako": "^2.0.3",
"typescript": "^5.7.2"
"@types/pako": "2.0.3",
"typescript": "5.7.2"
}
}
10 changes: 5 additions & 5 deletions cre/verification/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"postinstall": "bun run setup && (bun run build:save || echo 'Warning: @save/core build failed, run bun run build:save manually')"
},
"dependencies": {
"@chainlink/cre-sdk": "^1.0.9",
"@chainlink/cre-sdk": "1.0.9",
"@save/core": "git+ssh://git@github.com:llama-risk/save.git#v0.1.0",
"@noble/hashes": "^1.6.1",
"pako": "^2.1.0",
"@noble/hashes": "1.6.1",
"pako": "2.1.0",
"viem": "2.34.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/bun": "1.2.21",
"@types/pako": "^2.0.3",
"typescript": "^5.7.2"
"@types/pako": "2.0.3",
"typescript": "5.7.2"
}
}
Loading