metaplex/js/packages/cli/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@metaplex/cli",
"version": "0.0.2",
"main": "./build/cli.js",
"license": "MIT",
"bin": {
The Fair Launch Protocol (#367) * Fair launch work * Add cargo * Update cargo to latest * Latest candy machine types * Fair launch update to anchor 14 and finish fleshing out commands * Working on fair launch * Finish initializing fair launch. * Lottery endpoints * Knee deep in more actions * some monster commit here, almost done wiht initial draft * Code complete fair launch. first draft. * More work * COmmit to reproduce * Hell yeah i can make these and show them * well, a lot of stuff. * Holy medians batman * Adjust ticket * more commands, more love, more life * Mooore stuff * This sh*t is gettin hot * More junk, im losing it. * Ninja'd that sh*t * well ill be damned, some of it is working * Think punching is working. Time for sleep. * Anti rug commit - before testing. * feat: init commit for website * Got my money back first time end to end b*tches * things beginning to work * Oh yeah, rug pull seems to be working... * Mostly working now * Some more fixes * Moref ixes * feat: basic page * feat: purchaseTicket * feat: fair launch UI * Still figuring it out * Still investigating why newly made accounts have delegates * pushing * Some fixes to the adjust ticket * Bid adjustment works in UI * feat: layout * trasury numbers * Hook up your bid * feat: style * wip on fair launch new fields * feat: home * Come limited punching support * More display logic for fair launch * feat: style * feat: countdown * Bid adjustment * Fix for when median is not divisible by tick * feat: home * Working on recoding so that we can use spl tokens * feat: style * Midway stopping point...nothing is working. * more and less. * Added confetti and merged updates * End to end working and fix minting for spl in candy machine * New fair launch * New fair launch * Better loading and stuff * feat: style changes * fix: warnings * candy time * Anti rug screens * better verbiage * feat: hide withdraw button * Refund working and set id * Good to go for prod Co-authored-by: bartosz-lipinski <264380+bartosz-lipinski@users.noreply.github.com>
2021-09-21 11:33:22 -07:00
"metaplex": "./build/candy-machine-cli.js"
},
"scripts": {
"build": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"package:linux": "pkg . --no-bytecode --targets node14-linux-x64 --output bin/linux/metaplex",
"package:linuxb": "pkg . --targets node14-linux-x64 --output bin/linux/metaplex",
"package:win": "pkg . --targets node14-win-x64 --output bin/win/metaplex",
"package:macos": "pkg . --targets node14-macos-x64 --output bin/macos/metaplex",
"format": "prettier --loglevel warn --write \"**/*.{ts,js,json,yaml}\"",
"format:check": "prettier --loglevel warn --check \"**/*.{ts,js,json,yaml}\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\"",
"test": "jest"
},
"pkg": {
"scripts": "./build/**/*.{js|json}"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"dependencies": {
The Fair Launch Protocol (#367) * Fair launch work * Add cargo * Update cargo to latest * Latest candy machine types * Fair launch update to anchor 14 and finish fleshing out commands * Working on fair launch * Finish initializing fair launch. * Lottery endpoints * Knee deep in more actions * some monster commit here, almost done wiht initial draft * Code complete fair launch. first draft. * More work * COmmit to reproduce * Hell yeah i can make these and show them * well, a lot of stuff. * Holy medians batman * Adjust ticket * more commands, more love, more life * Mooore stuff * This sh*t is gettin hot * More junk, im losing it. * Ninja'd that sh*t * well ill be damned, some of it is working * Think punching is working. Time for sleep. * Anti rug commit - before testing. * feat: init commit for website * Got my money back first time end to end b*tches * things beginning to work * Oh yeah, rug pull seems to be working... * Mostly working now * Some more fixes * Moref ixes * feat: basic page * feat: purchaseTicket * feat: fair launch UI * Still figuring it out * Still investigating why newly made accounts have delegates * pushing * Some fixes to the adjust ticket * Bid adjustment works in UI * feat: layout * trasury numbers * Hook up your bid * feat: style * wip on fair launch new fields * feat: home * Come limited punching support * More display logic for fair launch * feat: style * feat: countdown * Bid adjustment * Fix for when median is not divisible by tick * feat: home * Working on recoding so that we can use spl tokens * feat: style * Midway stopping point...nothing is working. * more and less. * Added confetti and merged updates * End to end working and fix minting for spl in candy machine * New fair launch * New fair launch * Better loading and stuff * feat: style changes * fix: warnings * candy time * Anti rug screens * better verbiage * feat: hide withdraw button * Refund working and set id * Good to go for prod Co-authored-by: bartosz-lipinski <264380+bartosz-lipinski@users.noreply.github.com>
2021-09-21 11:33:22 -07:00
"@project-serum/anchor": "^0.14.0",
"@solana/spl-token": "^0.1.8",
"arweave": "^1.10.16",
"bn.js": "^5.2.0",
"borsh": "^0.4.0",
"commander": "^8.1.0",
"form-data": "^4.0.0",
"ipfs-http-client": "^52.0.3",
"jsonschema": "^1.4.0",
"loglevel": "^1.7.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"jest": "^27.2.0",
"pkg": "^5.3.1",
"typescript": "^4.3.5"
}
}