-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update package.json and tsconfig.json - cleanup bubblegum test file and imports - enable anchor test --skip-lint to run after anchor workspace members are built
- Loading branch information
Showing
13 changed files
with
4,889 additions
and
547 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,57 @@ | ||
{ | ||
"name": "bubblegum", | ||
"version": "1.0.0", | ||
"name": "@metaplex-foundation/mpl-bubblegum", | ||
"version": "0.0.1", | ||
"description": "SDK for MPL Bubblegum contract", | ||
"main": "index.ts", | ||
"main": "dist/src/mpl-bubblegum.js", | ||
"types": "dist/src/mpl-bubblegum.d.ts", | ||
"scripts": { | ||
"check:publish-ready": "yarn build && yarn test", | ||
"preversion": "yarn check:publish-ready", | ||
"postversion": "git add package.json && git commit -m \"chore: update $npm_package_name to v$npm_package_version\" && git tag $npm_package_name@$npm_package_version", | ||
"prepublish": "yarn check:publish-ready", | ||
"postpublish": "git push origin && git push origin --tags", | ||
"build:docs": "typedoc", | ||
"build": "rimraf dist && tsc -p tsconfig.json", | ||
"test": "tape dist/test/*.js", | ||
"api:gen": "DEBUG='(solita|rustbin):(info|error)' solita", | ||
"lint": "eslint \"{src,test}/**/*.ts\" --format stylish", | ||
"fix:lint": "yarn lint --fix", | ||
"prettier": "prettier \"{src,test}/**/*.ts\" --check", | ||
"fix:prettier": "prettier --write src/", | ||
"fix": "yarn fix:lint && yarn fix:prettier" | ||
}, | ||
"files": [ | ||
"/dist" | ||
], | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org" | ||
}, | ||
"keywords": [ | ||
"nft", | ||
"metaplex", | ||
"solana", | ||
"blockchain" | ||
], | ||
"homepage": "https://metaplex.com", | ||
"repository": "https://github.com/metaplex-foundation/metaplex-program-library.git", | ||
"author": "Metaplex Maintainers <[email protected]>", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@metaplex-foundation/rustbin": "^0.3.1", | ||
"@metaplex-foundation/solita": "^0.12.2" | ||
"@metaplex-foundation/beet": "^0.1.0", | ||
"@metaplex-foundation/beet-solana": "^0.1.1", | ||
"@solana/web3.js": "^1.35.1", | ||
"@sorend-solana/gummyroll": "^0.0.6", | ||
"@sorend-solana/utils": "^0.0.5" | ||
}, | ||
"scripts": { | ||
"api:gen": "DEBUG='(solita|rustbin):(info|error)' solita" | ||
"devDependencies": { | ||
"@metaplex-foundation/rustbin": "^0.3.1", | ||
"@metaplex-foundation/solita": "^0.12.2", | ||
"@types/tape": "^4.13.2", | ||
"eslint": "^8.3.0", | ||
"rimraf": "^3.0.2", | ||
"spok": "^1.4.3", | ||
"tape": "^5.5.2", | ||
"typescript": "^4.6.2" | ||
} | ||
} |
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.