1234567891011121314151617181920212223242526 |
- {
- "scripts": {
- "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/test.ts",
- "build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
- "build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
- "deploy": "solana program deploy ./program/target/so/hello_solana_program.so"
- },
- "dependencies": {
- "@metaplex-foundation/mpl-token-metadata": "^2.5.2",
- "@solana/spl-token": "^0.3.7",
- "@solana/web3.js": "^1.73.0",
- "borsh": "^0.7.0",
- "buffer": "^6.0.3",
- "fs": "^0.0.1-security"
- },
- "devDependencies": {
- "@types/bn.js": "^5.1.0",
- "@types/chai": "^4.3.1",
- "@types/mocha": "^9.1.1",
- "chai": "^4.3.4",
- "mocha": "^9.0.3",
- "solana-bankrun": "^0.3.0",
- "ts-mocha": "^10.0.0",
- "typescript": "^4.3.5"
- }
- }
|