1234567891011121314151617181920212223242526272829303132333435 |
- {
- "name": "program-examples",
- "version": "1.0.0",
- "description": "### :crab: Rust. :snake: Python. :link: All onchain.",
- "scripts": {
- "sync-package-json": "ts-node scripts/sync-package-json.ts",
- "format:fix": "pnpx @biomejs/biome format --write ./",
- "lint:fix": "pnpx @biomejs/biome lint --write ./",
- "lint": "pnpx @biomejs/biome lint ./",
- "fix": "pnpx @biomejs/biome check --write ./",
- "check": "pnpx @biomejs/biome check ./",
- "prepare": "husky"
- },
- "lint-staged": {
- "*": ["biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true"]
- },
- "keywords": [],
- "author": "Solana Foundation",
- "license": "MIT",
- "devDependencies": {
- "@biomejs/biome": "1.8.1",
- "@types/node": "^20.9.0",
- "husky": "^9.0.11",
- "picocolors": "^1.0.0",
- "ts-node": "^10.9.1",
- "typescript": "^5.2.2"
- },
- "dependencies": {
- "@coral-xyz/anchor": "^0.30.1",
- "@solana/web3.js": "^1.95.2",
- "anchor-bankrun": "^0.4.0",
- "chai": "^5.1.1",
- "solana-bankrun": "^0.3.0"
- }
- }
|