Skip to content
Closed
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
20 changes: 14 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup --config tsup.config.ts",
"lint": "eslint src --ext .ts,tsx,js,jsx",
"lint:types": "tsc --noEmit",
Comment on lines -10 to -11

Choose a reason for hiding this comment

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

I believe we still want eslint...

"prettier:write": "prettier --w src",
"clean": "rm -rf dist",
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify"
"build:css": "tailwindcss -i ./src/style.css -o ./dist/styles.css --minify",
"typecheck": "tsc --noEmit",
"prettier:write": "prettier --write src",
"clean": "rm -rf dist && rm -rf node_modules"
},
"exports": {
".": {
Expand Down Expand Up @@ -81,5 +81,13 @@
"viem": "^2.21.52",
"wagmi": "^2.14.8",
"zod": "^3.24.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"useTabs": false,
"tabWidth": 2,
"semi": true,
"arrowParens": "always"
}
}
}
Loading