-
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(bugs): cjs build and import alpha.13
- Loading branch information
1 parent
15d3b45
commit 9443fe6
Showing
42 changed files
with
943 additions
and
645 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
Large diffs are not rendered by default.
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
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.
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,6 +1,6 @@ | ||
{ | ||
"name": "@hypercerts-org/sdk", | ||
"version": "1.0.0-alpha.10", | ||
"version": "1.0.0-alpha.13", | ||
"description": "SDK for hypercerts protocol", | ||
"repository": "[email protected]:hypercerts-org/hypercerts.git", | ||
"author": "Hypercerts team", | ||
|
@@ -11,11 +11,9 @@ | |
"module": "./dist/esm/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"files": [ | ||
"dist", | ||
|
@@ -26,6 +24,7 @@ | |
"@ethereum-attestation-service/eas-sdk": "1.2.2-beta.0", | ||
"@ethersproject/abstract-signer": "^5.7.0", | ||
"@graphprotocol/client-add-source-name": "^2.0.0", | ||
"@graphprotocol/client-cli": "^3.0.0", | ||
"@graphprotocol/client-polling-live": "^2.0.0", | ||
"@graphql-mesh/cache-localforage": "^0.96.0", | ||
"@graphql-mesh/cross-helpers": "^0.4.1", | ||
|
@@ -34,7 +33,6 @@ | |
"@graphql-mesh/merger-bare": "^0.95.7", | ||
"@graphql-mesh/runtime": "^0.96.12", | ||
"@graphql-mesh/store": "^0.95.7", | ||
"@graphql-mesh/types": "^0.95.7", | ||
"@graphql-mesh/utils": "^0.95.7", | ||
"@graphql-typed-document-node/core": "^3.2.0", | ||
"@hypercerts-org/contracts": "1.0.0-alpha.2", | ||
|
@@ -57,8 +55,6 @@ | |
"@babel/preset-env": "^7.23.2", | ||
"@babel/preset-typescript": "^7.23.2", | ||
"@faker-js/faker": "^8.0.2", | ||
"@graphprotocol/client-cli": "^3.0.0", | ||
"@jest/globals": "^29.7.0", | ||
"@rollup/plugin-commonjs": "^24.0.1", | ||
"@rollup/plugin-json": "^6.0.0", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
|
@@ -70,17 +66,12 @@ | |
"@types/sinon": "^10.0.15", | ||
"@viem/anvil": "^0.0.6", | ||
"abitype": "^0.10.2", | ||
"babel-jest": "^29.7.0", | ||
"chai": "^4.3.7", | ||
"chai-assertions-count": "^1.0.2", | ||
"chai-subset": "^1.6.0", | ||
"esbuild": "^0.17.10", | ||
"ethereum-waffle": "^4.0.10", | ||
"fetch-mock": "^9.11.0", | ||
"it-all": "^2.0.0", | ||
"jest": "^29.3.1", | ||
"jest-extended": "^4.0.0", | ||
"jest-fetch-mock": "^3.0.3", | ||
"json-schema-to-typescript": "^12.0.0", | ||
"nyc": "^15.1.0", | ||
"rollup": "^3.17.2", | ||
|
@@ -90,28 +81,28 @@ | |
"rollup-plugin-node-polyfills": "^0.2.1", | ||
"shx": "^0.3.4", | ||
"sinon": "^15.2.0", | ||
"ts-jest": "^29.0.3", | ||
"ts-jest-resolver": "^2.0.0", | ||
"ts-mocha": "^10.0.0", | ||
"ts-node": "^10.9.1", | ||
"tslib": "^2.5.0", | ||
"tsx": "^3.14.0", | ||
"typedoc": "^0.23.25", | ||
"typedoc-plugin-markdown": "^3.14.0", | ||
"typedoc-plugin-missing-exports": "^2.0.0", | ||
"typescript": "5.1.6" | ||
"typescript": "5.1.6", | ||
"vitest": "^0.28.4" | ||
}, | ||
"scripts": { | ||
"build": "pnpm types:json && pnpm graph:build:esm && rollup -c", | ||
"build": "pnpm types:json && pnpm graph:build && rollup -c", | ||
"docs": "typedoc", | ||
"graph:compile": "graphql-codegen", | ||
"graph:serve": "graphclient serve-dev", | ||
"graph:watch": "graphql-codegen -w", | ||
"graph:build": "rm -rf ./src/.graphclient && graphclient build --throwOnInvalidConfig", | ||
"graph:build:esm": "rm -rf ./src/.graphclient && NODE_OPTIONS='--loader ts-node/esm' graphclient build --throwOnInvalidConfig", | ||
"clean": "rm -rf ./dist", | ||
"prebuild": "pnpm clean", | ||
"prepack": "pnpm build", | ||
"test": "NODE_OPTIONS=\"--no-warnings --experimental-vm-modules\" jest --detectOpenHandles --forceExit", | ||
"test": "vitest", | ||
"types:json": "pnpm json2ts -i './src/resources/schema/' -o 'src/types' --cwd './src/resources/schema'" | ||
} | ||
} |
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
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
Oops, something went wrong.