Skip to content

Commit

Permalink
Move axiom-react repo to react folder in this repo (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
ytham authored Jan 14, 2024
1 parent e2bf701 commit 10f4b5f
Show file tree
Hide file tree
Showing 9 changed files with 977 additions and 0 deletions.
30 changes: 30 additions & 0 deletions react/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build
dist

# misc
.DS_Store
*.pem
debug/

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
test/unit/debug

# local env files
.env*.local

# typescript
*.tsbuildinfo
36 changes: 36 additions & 0 deletions react/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "@axiom-crypto/react",
"version": "0.2.2-rc2.0",
"description": "React components for Axiom SDK",
"author": "Intrinsic Technologies",
"license": "MIT",
"source": "src/index.ts",
"main": "index.js",
"scripts": {
"build": "rm -rf ./dist && tsc && node scripts/postbuild.js"
},
"keywords": [
"axiom",
"ethereum",
"zero knowledge",
"zk",
"coprocessor",
"crypto"
],
"publishConfig": {
"directory": "dist"
},
"dependencies": {
"@axiom-crypto/client": "0.2.2-rc2.0",
"comlink": "^4.4.1"
},
"peerDependencies": {
"@axiom-crypto/core": "2.3.0-rc2.2",
"@types/react": ">=18.1.0",
"react": ">=18.1.0",
"react-dom": ">=18.1.0"
},
"devDependencies": {
"typescript": "^5.2.2"
}
}
Loading

0 comments on commit 10f4b5f

Please sign in to comment.