{ "name": "counter-program", "version": "1.0.0", "description": "Counter program for Solana made with the Steel framework", "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/counter_program.so" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "@solana/web3.js": "^1.95.4" }, "devDependencies": { "@types/chai": "^4.3.7", "@types/mocha": "10.0.9", "@types/node": "^22.7.4", "borsh": "^2.0.0", "chai": "^4.3.7", "mocha": "10.7.3", "solana-bankrun": "0.4.0", "ts-mocha": "^10.0.0", "typescript": "5.6.3" } }