-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.21 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.21 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
{
"name": "aave-v3",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prettier:fix": "prettier --write \"**/*.@(json|md|sh|toml)\"",
"prettier:validate": "prettier --check \"**/*.@(json|md|sh|toml)\"",
"md:lint": "markdownlint -c .markdownlint.json \"**/*.md\" \".github/**/*.md\" -i \"target\" -i \"node_modules\" -i \"CHANGELOG.md\" -i \"aave-core/doc/**/*.md\" -i \"aave-test-kit/node_modules/**/*.md\" -i \"aave-test-suite/node_modules/**/*.md\"",
"md:fix": "pnpm md:lint --fix",
"download-llms": "./scripts/download-llms.sh",
"update-agents": "SKILLS_CLI_VERSION=${SKILLS_CLI_VERSION:-1.3.9} ./scripts/update-agents.sh",
"list-skills": "npx skills@${SKILLS_CLI_VERSION:-1.3.9} add avaralabs/skills --list"
},
"pnpm": {
"overrides": {
"flatted": ">=3.4.0",
"minimatch": ">=10.2.3",
"ajv": ">=8.18.0",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3",
"picomatch": ">=4.0.4",
"smol-toml@<1.6.1": ">=1.6.1",
"test-exclude": ">=8.0.0"
}
},
"devDependencies": {
"markdownlint": "^0.40.0",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.8.1",
"prettier-plugin-sh": "^0.18.0",
"prettier-plugin-toml": "^2.0.6"
}
}