Skip to content

Commit

Permalink
chore: setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizzamia committed Dec 14, 2023
1 parent a2ddfc7 commit 5765449
Show file tree
Hide file tree
Showing 6 changed files with 3,672 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
dist
tmp
/out-tsc

# dependencies
node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db

.nx/cache

package-lock.json

# Yarn
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
33 changes: 33 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "@coinbase/onchainkit",
"version": "0.0.0",
"repository": "https://github.com/coinbase/onchainkit.git",
"license": "MIT",
"dependencies": {
"react": "^18",
"viem": "^1.19.7",
"wagmi": "^1.4.10"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && tsc --module commonjs --outDir dist/lib",
"release:check": "changeset status --verbose --since=origin/main",
"release:publish": "yarn install && yarn build && changeset publish",
"release:version": "changeset version && yarn install --immutable"
},
"devDependencies": {
"typescript": "~5.3.3"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"dist/"
],
"type": "commonjs",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"packageManager": "[email protected]"
}
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// ☕️
const version = '0.0.0';
Loading

0 comments on commit 5765449

Please sign in to comment.