-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 3.16 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
{
"name": "outstakev2",
"version": "2.0.0",
"author": "Jasonrale",
"license": "GPL-3.0",
"description": "[Gitbook](https://outrundao.gitbook.io/outrun/ \"OutrunDao Official Doc\") **Read this in chinese: [中文](README.cn.md)** # Outrun -- Built entirely around native yield from Blast _The first LSDFi protocol live on Blast._ _The first concentrated liquidity AMM with native yield._ _The first decentralized algorithmic stablecoin pegged to ETH and USDB yields._",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "npm run gate:fast",
"build": "forge build",
"test": "forge test",
"gate:fast": "bash ./script/harness/gate.sh --profile fast",
"gate": "bash ./script/harness/gate.sh --profile fast",
"gate:full": "bash ./script/harness/gate.sh --profile full",
"gate:ci": "bash ./script/harness/gate.sh --profile ci",
"test:fast": "npm run gate:fast",
"test:unit:forge": "forge test --match-contract '^(OracleSetterUpgradeableTest|OutrunOFTUpgradeableTest|OutrunRouterTest|OutrunRouterFuzzTest|OutrunStakingPositionUpgradeableTest|OutrunStakingPositionFuzzTest|OutrunUniversalAssetsUpgradeableTest|RouterPositionSyTest|RouterProxyIntegrationTest|SYAdaptersUpgradeableTest|SYUpgradeableTest|AdversarialTests)$'",
"test:unit": "FOUNDRY_PROFILE=smoke npm run test:unit:forge",
"test:position": "FOUNDRY_PROFILE=smoke forge test --match-contract '^(OutrunStakingPositionUpgradeableTest|OutrunStakingPositionFuzzTest|AdversarialTests|RouterProxyIntegrationTest)$'",
"test:router": "FOUNDRY_PROFILE=smoke forge test --match-contract '^(OutrunRouterTest|OutrunRouterFuzzTest|RouterProxyIntegrationTest|RouterPositionSyTest)$'",
"test:yield": "FOUNDRY_PROFILE=smoke forge test --match-contract '^(SYUpgradeableTest|SYAdaptersUpgradeableTest|OracleSetterUpgradeableTest)$'",
"test:assets": "FOUNDRY_PROFILE=smoke forge test --match-contract '^(OutrunUniversalAssetsUpgradeableTest|OutrunOFTUpgradeableTest)$'",
"test:fork": "FOUNDRY_PROFILE=ci forge test --match-path 'test/upgradeable/SYAdaptersFork.t.sol'",
"test:invariant": "FOUNDRY_PROFILE=ci forge test --match-path 'test/upgradeable/OutrunStakingPositionInvariantUpgradeable.t.sol'",
"test:release": "FOUNDRY_PROFILE=release npm run test:unit:forge && FOUNDRY_PROFILE=release forge test --match-path 'test/upgradeable/OutrunStakingPositionInvariantUpgradeable.t.sol' && FOUNDRY_PROFILE=release forge test --match-path 'test/upgradeable/SYAdaptersFork.t.sol'",
"gas:report": "forge test --gas-report"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@layerzerolabs/eslint-config-next": "~3.0.168",
"@layerzerolabs/lz-definitions": "^3.1.2",
"@layerzerolabs/lz-v2-utilities": "^3.0.168",
"@layerzerolabs/prettier-config-next": "^3.0.168",
"@layerzerolabs/solhint-config": "^3.0.168",
"@layerzerolabs/test-devtools-evm-foundry": "^8.0.1",
"@rushstack/eslint-patch": "^1.16.1",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-plugin-jest-extended": "^3.0.1",
"ethers": "^5.8.0",
"js-yaml": "4.1.1",
"prettier": "^3.8.3",
"solhint": "^6.2.1"
},
"engines": {
"node": ">=18.16.0"
}
}