-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: implement monorepo * feat: refactor interfaces in blinks-core and blinks packages, adjust naming, extend imports * chore: minor cleanup * chore: after merge fixes and adjustments * chore: addressing PR comments, move stylePreset to blinks package (rename to theme) * docs: update readme with updated prop * chore: rename theme to stylePreset to avoid breaking change * docs: revert docs
- Loading branch information
Showing
89 changed files
with
566 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"name": "@dialectlabs/blinks-core", | ||
"version": "0.10.0", | ||
"license": "Apache-2.0", | ||
"private": false, | ||
"sideEffects": true, | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dialectlabs/blinks" | ||
}, | ||
"scripts": { | ||
"build": "tsup-node", | ||
"dev": "tsup-node --watch" | ||
}, | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"devDependencies": { | ||
"@solana/actions-spec": "~2.2.0", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.16.1", | ||
"@typescript-eslint/parser": "^7.16.1", | ||
"autoprefixer": "^10.4.19", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-react": "^7.34.4", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"postcss": "^8.4.39", | ||
"postcss-prefix-selector": "^1.16.1", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-organize-imports": "^4.0.0", | ||
"prettier-plugin-tailwindcss": "^0.6.5", | ||
"tailwindcss": "^3.4.3", | ||
"tsup": "^8.2.0", | ||
"typescript": "^5.5.3" | ||
}, | ||
"peerDependencies": { | ||
"react": ">=18" | ||
}, | ||
"dependencies": { | ||
"@solana/web3.js": "^1.95.1", | ||
"nanoid": "^5.0.7" | ||
} | ||
} |
Oops, something went wrong.