Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create package.json #936

Merged
merged 4 commits into from
Feb 5, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
version: stable

- name: Lint
run: forge fmt --check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
version: stable

- name: Build
run: forge build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
version: stable

- name: Build
run: forge build
Expand Down
23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "@uniswap/v4-core",
"version": "1.0.0",
"description": "🦄 Core smart contracts of Uniswap v4",
"repository": {
"type": "git",
"url": "git+https://github.com/Uniswap/v4-core.git"
},
"license": "BUSL-1.1",
hensha256 marked this conversation as resolved.
Show resolved Hide resolved
gretzke marked this conversation as resolved.
Show resolved Hide resolved
"keywords": [
"uniswap",
"core",
"v4"
],
"bugs": {
"url": "https://uniswap.org/bug-bounty"
},
"homepage": "https://github.com/Uniswap/v4-core#readme",
"publishConfig": {
"access": "public",
"provenance": true
Copy link
Contributor

Choose a reason for hiding this comment

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

yay!

}
}
Loading