-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.15 KB
/
package.json
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
{
"private": false,
"name": "defi-sdk",
"type": "module",
"description": "",
"author": {
"name": "SundaeSwap Labs, Inc.",
"url": "https://www.sundaeswap.finance/"
},
"bugs": {
"url": "https://github.com/SundaeSwap-finance/defi-sdk/issues"
},
"homepage": "https://github.com/SundaeSwap-finance/defi-sdk#readme",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "bun lint --fix"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --ignore-pattern '**/dist/**'",
"lint:fix": "bun run lint --fix",
"test": "lerna exec bun test",
"clean": "lerna run clean",
"build": "lerna run build --scope '@sundaeswap/*'",
"prepare": "husky",
"version:ci": "lerna version patch --y",
"publish:ci": "lerna publish from-package -y"
},
"devDependencies": {
"@sundaeswap/babel-preset": "2.0.12",
"@sundaeswap/eslint-config": "2.0.11",
"@sundaeswap/prettier-config": "2.0.10",
"@types/bun": "1.1.6",
"@types/node": "^20.14.9",
"husky": "^9.0.11",
"lerna": "^8.1.5",
"lint-staged": "^15.2.7",
"npm-check-updates": "^15.0.2",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
}
}