-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sdk): remove unused evaluation and cleanup
- Loading branch information
1 parent
5dba26b
commit d12b05e
Showing
27 changed files
with
43 additions
and
4,479 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"name": "@hypercerts-org/sdk", | ||
"version": "2.0.0-alpha.22", | ||
"version": "2.0.0-alpha.27", | ||
"description": "SDK for hypercerts protocol", | ||
"repository": "[email protected]:hypercerts-org/hypercerts.git", | ||
"author": "Hypercerts team", | ||
"license": "Apache-2.0", | ||
"source": "src/index.ts", | ||
"typedocMain": "src/index.ts", | ||
"main": "./dist/cjs/index.js", | ||
"main": "./dist/cjs/index.cjs", | ||
"module": "./dist/esm/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
"types": "./dist/index.d.ts", | ||
"require": "./dist/cjs/index.js", | ||
"require": "./dist/cjs/index.cjs", | ||
"import": "./dist/esm/index.mjs" | ||
}, | ||
"files": [ | ||
|
@@ -21,26 +21,19 @@ | |
"package.json" | ||
], | ||
"dependencies": { | ||
"@ethereum-attestation-service/eas-sdk": "1.3.7", | ||
"@ethersproject/abstract-signer": "^5.7.0", | ||
"@graphql-typed-document-node/core": "^3.2.0", | ||
"@hypercerts-org/contracts": "2.0.0-alpha.0", | ||
"@openzeppelin/merkle-tree": "^1.0.5", | ||
"@swc/core": "^1.6.3", | ||
"@urql/core": "^5.0.4", | ||
"ajv": "^8.11.2", | ||
"axios": "^1.7.2", | ||
"dotenv": "^16.0.3", | ||
"ethers": "5.7.2", | ||
"graphql": "^16.8.1", | ||
"rollup-plugin-swc3": "^0.11.2", | ||
"urql": "^4.1.0", | ||
"viem": "^2.15.1", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@faker-js/faker": "^8.3.1", | ||
"@graphql-codegen/cli": "^5.0.2", | ||
"@rollup/plugin-commonjs": "^24.0.1", | ||
"@rollup/plugin-json": "^6.0.0", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
|
@@ -65,7 +58,7 @@ | |
"vitest": "^1.6.0" | ||
}, | ||
"scripts": { | ||
"build": "pnpm types:json && pnpm codegen:api && pnpm codegen:graph && rollup -c", | ||
"build": "pnpm types:json && pnpm codegen:api && rollup -c", | ||
"codegen:graph": "graphql-codegen", | ||
"codegen:api": "npx orval --input ./lib/hypercerts-api/src/__generated__/swagger.json --output ./src/__generated__/api.ts", | ||
"clean": "rm -rf ./dist", | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.