12345678910111213141516171819202122232425262728 |
- {
- "name": "steel-hello-solana",
- "version": "1.0.0",
- "description": "hello world with steel framework for solana",
- "scripts": {
- "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/index.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"
- },
- "keywords": [],
- "author": "Ayush Chauhan",
- "license": "ISC",
- "devDependencies": {
- "@types/bn.js": "^5.1.0",
- "@types/chai": "^4.3.1",
- "@types/mocha": "^9.1.1",
- "@types/node": "^22.7.4",
- "chai": "^4.3.4",
- "mocha": "^9.0.3",
- "solana-bankrun": "^0.3.0",
- "ts-mocha": "^10.0.0",
- "typescript": "^4.3.5"
- },
- "dependencies": {
- "@solana/web3.js": "^1.95.3"
- }
- }
|