Skip to content

Commit 63f6562

Browse files
committedMar 11, 2025
fix scripts, apply prettier airbnb config
1 parent f31263e commit 63f6562

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+2050
-3675
lines changed
 

‎package.json

+13-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"dist"
77
],
88
"scripts": {
9+
"dev": "tsup --watch",
910
"build": "tsup --config tsup.config.ts",
10-
"lint": "eslint src --ext .ts,tsx,js,jsx",
11-
"lint:types": "tsc --noEmit",
11+
"build:css": "tailwindcss -i ./src/style.css -o ./dist/styles.css --minify",
12+
"typecheck": "tsc --noEmit",
1213
"prettier:write": "prettier --w src",
13-
"clean": "rm -rf dist",
14-
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify"
14+
"clean": "rm -rf dist && rm -rf node_modules"
1515
},
1616
"exports": {
1717
".": {
@@ -81,5 +81,13 @@
8181
"viem": "^2.21.52",
8282
"wagmi": "^2.14.8",
8383
"zod": "^3.24.1"
84+
},
85+
"prettier": {
86+
"singleQuote": true,
87+
"trailingComma": "all",
88+
"useTabs": false,
89+
"tabWidth": 2,
90+
"semi": true,
91+
"arrowParens": "always"
8492
}
85-
}
93+
}

0 commit comments

Comments
 (0)
Failed to load comments.