solana-presale-sdk
Version:
SDK for Solana Presale Program
46 lines • 1.12 kB
JSON
{
"name": "solana-presale-sdk",
"version": "1.0.1",
"description": "SDK for Solana Presale Program",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "node build.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepare": "npm run build",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch"
},
"keywords": [
"solana",
"blockchain",
"presale",
"sdk"
],
"author": "",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.2",
"moment": "^2.29.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"esbuild": "^0.19.5",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}