-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from saihaj/try-more-fix
add export map
- Loading branch information
Showing
2 changed files
with
99 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@hyperverse/evm-nft-game": patch | ||
--- | ||
|
||
add export map |
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,92 +1,96 @@ | ||
{ | ||
"name": "@hyperverse/evm-nft-game", | ||
"version": "0.0.3", | ||
"source": "./source/index.ts", | ||
"types": "./distribution/index.d.ts", | ||
"main": "./distribution/index.js", | ||
"module": "./distribution/index.es.js", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "hardhat test", | ||
"build": "rollup --config ./rollup.config.js", | ||
"clean": "rimraf ./distribution", | ||
"compile": "hardhat compile", | ||
"deploy": "run-p deploy-ethereum deploy-metis deploy-avalanche deploy-polygon", | ||
"deploy-ethereum": "hardhat run scripts/deploy.js --network ethereum ", | ||
"deploy-metis": "hardhat run scripts/deploy.js --network metis", | ||
"deploy-avalanche": "hardhat run scripts/deploy.js --network avalanche", | ||
"deploy-polygon": "hardhat run scripts/deploy.js --network polygon", | ||
"lint": "tsc --noEmit", | ||
"storybook": "start-storybook -p 6006", | ||
"build-storybook": "build-storybook", | ||
"release": "changeset publish", | ||
"prerelease": "pnpm run bootstrap && pnpm run build", | ||
"changeset": "changeset" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"peerDependencies": { | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"files": [ | ||
"distribution", | ||
"utils" | ||
], | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"dependencies": { | ||
"@changesets/cli": "^2.23.0", | ||
"@decentology/hyperverse": "^1.0.15", | ||
"@decentology/hyperverse-evm": "^1.0.15", | ||
"@decentology/unstated-next": "^1.1.9", | ||
"@openzeppelin/contracts": "^4.6.0", | ||
"ethers": "^5.6.8", | ||
"react": "17.0.2", | ||
"react-dom": "17.0.2", | ||
"react-use": "^17.4.0", | ||
"real-cancellable-promise": "^1.1.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.18.2", | ||
"@decentology/config": "^1.0.3", | ||
"@ethersproject/abstract-provider": "^5.6.1", | ||
"@nomiclabs/hardhat-ethers": "^2.0.6", | ||
"@nomiclabs/hardhat-waffle": "^2.0.3", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@storybook/addon-actions": "^6.5.6", | ||
"@storybook/addon-console": "^1.2.3", | ||
"@storybook/addon-docs": "^6.5.6", | ||
"@storybook/addon-essentials": "^6.5.6", | ||
"@storybook/addon-interactions": "^6.5.6", | ||
"@storybook/addon-links": "^6.5.6", | ||
"@storybook/addons": "^6.5.6", | ||
"@storybook/builder-webpack5": "^6.5.6", | ||
"@storybook/cli": "^6.5.6", | ||
"@storybook/manager-webpack5": "^6.5.6", | ||
"@storybook/react": "^6.5.6", | ||
"@storybook/testing-library": "^0.0.11", | ||
"@storybook/theming": "^6.5.6", | ||
"@types/react": "17.0.2", | ||
"babel-loader": "^8.2.5", | ||
"babel-plugin-react-require": "^3.1.3", | ||
"chai": "^4.3.6", | ||
"esbuild": "^0.14.47", | ||
"ethereum-waffle": "^3.4.4", | ||
"fs-extra": "^10.1.0", | ||
"hardhat": "^2.9.7", | ||
"http-proxy-middleware": "^2.0.6", | ||
"node-watch": "^0.7.3", | ||
"npm-run-all": "^4.1.5", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^2.75.7", | ||
"rollup-plugin-auto-external": "^2.0.0", | ||
"rollup-plugin-dts": "^4.2.2", | ||
"rollup-plugin-esbuild": "^4.9.1", | ||
"rollup-plugin-postcss": "^4.0.2", | ||
"typescript": "^4.7.4", | ||
"wait-on": "^6.0.1" | ||
} | ||
"name": "@hyperverse/evm-nft-game", | ||
"version": "0.0.3", | ||
"source": "./source/index.ts", | ||
"types": "./distribution/index.d.ts", | ||
"main": "./distribution/index.mjs", | ||
"license": "MIT", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./index.ts" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "hardhat test", | ||
"build": "rollup --config ./rollup.config.js", | ||
"clean": "rimraf ./distribution", | ||
"compile": "hardhat compile", | ||
"deploy": "run-p deploy-ethereum deploy-metis deploy-avalanche deploy-polygon", | ||
"deploy-ethereum": "hardhat run scripts/deploy.js --network ethereum ", | ||
"deploy-metis": "hardhat run scripts/deploy.js --network metis", | ||
"deploy-avalanche": "hardhat run scripts/deploy.js --network avalanche", | ||
"deploy-polygon": "hardhat run scripts/deploy.js --network polygon", | ||
"lint": "tsc --noEmit", | ||
"storybook": "start-storybook -p 6006", | ||
"build-storybook": "build-storybook", | ||
"release": "changeset publish", | ||
"prerelease": "pnpm run bootstrap && pnpm run build", | ||
"changeset": "changeset" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"peerDependencies": { | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"files": [ | ||
"distribution" | ||
], | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"dependencies": { | ||
"@changesets/cli": "^2.23.0", | ||
"@decentology/hyperverse": "^1.0.15", | ||
"@decentology/hyperverse-evm": "^1.0.15", | ||
"@decentology/unstated-next": "^1.1.9", | ||
"@openzeppelin/contracts": "^4.6.0", | ||
"ethers": "^5.6.8", | ||
"react": "17.0.2", | ||
"react-dom": "17.0.2", | ||
"react-use": "^17.4.0", | ||
"real-cancellable-promise": "^1.1.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.18.2", | ||
"@decentology/config": "^1.0.3", | ||
"@ethersproject/abstract-provider": "^5.6.1", | ||
"@nomiclabs/hardhat-ethers": "^2.0.6", | ||
"@nomiclabs/hardhat-waffle": "^2.0.3", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@storybook/addon-actions": "^6.5.6", | ||
"@storybook/addon-console": "^1.2.3", | ||
"@storybook/addon-docs": "^6.5.6", | ||
"@storybook/addon-essentials": "^6.5.6", | ||
"@storybook/addon-interactions": "^6.5.6", | ||
"@storybook/addon-links": "^6.5.6", | ||
"@storybook/addons": "^6.5.6", | ||
"@storybook/builder-webpack5": "^6.5.6", | ||
"@storybook/cli": "^6.5.6", | ||
"@storybook/manager-webpack5": "^6.5.6", | ||
"@storybook/react": "^6.5.6", | ||
"@storybook/testing-library": "^0.0.11", | ||
"@storybook/theming": "^6.5.6", | ||
"@types/react": "17.0.2", | ||
"babel-loader": "^8.2.5", | ||
"babel-plugin-react-require": "^3.1.3", | ||
"chai": "^4.3.6", | ||
"esbuild": "^0.14.47", | ||
"ethereum-waffle": "^3.4.4", | ||
"fs-extra": "^10.1.0", | ||
"hardhat": "^2.9.7", | ||
"http-proxy-middleware": "^2.0.6", | ||
"node-watch": "^0.7.3", | ||
"npm-run-all": "^4.1.5", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^2.75.7", | ||
"rollup-plugin-auto-external": "^2.0.0", | ||
"rollup-plugin-dts": "^4.2.2", | ||
"rollup-plugin-esbuild": "^4.9.1", | ||
"rollup-plugin-postcss": "^4.0.2", | ||
"typescript": "^4.7.4", | ||
"wait-on": "^6.0.1" | ||
} | ||
} |