Skip to content

Commit

Permalink
fix: add files to npm conf (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
jn-lp authored Sep 17, 2024
1 parent d22a477 commit 80692ae
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
File renamed without changes.
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
{
"name": "@phuture/sdk",
"repository": "Phuture-Finance/phuture-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/Phuture-Finance/phuture-sdk.git"
},
"private": false,
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"main": "./dist/cjs.js",
"module": "./dist/esm.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "npm run build",
"start": "npx tsx ./examples/example-$npm_config_name.ts",
"build:js": "node esbuild.mjs",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json",
Expand All @@ -18,7 +27,8 @@
"prebuild": "npm run clean",
"prepare": "husky install",
"fix": "npx @biomejs/biome check --write src",
"typechain": "typechain --target=ethers-v5 --out-dir=src/typechain 'src/abis/**/*.json' --always-generate-overloads"
"typechain": "typechain --target=ethers-v5 --out-dir=src/typechain 'src/abis/**/*.json' --always-generate-overloads",
"verify-pack": "npm pack && tar -xvzf *.tgz && rm -rf package && rm *.tgz"
},
"peerDependencies": {
"typescript": ">=5.0.4"
Expand Down

0 comments on commit 80692ae

Please sign in to comment.