e8d9b1fd42
Add complete token system with Plex/Tautulli/Overseer integration: - Anchor program for SPL token mint/burn/transfer - Express backend with OAuth, webhooks, Solana integration - Next.js frontend with dashboard, admin panel, wallet management - Docker deployment for 172.20.1.0/24 infrastructure - Production configs with SSL, Nginx, health monitoring Tautulli webhooks auto-mint on watch events. Overseer integration burns for content requests.
29 lines
822 B
JSON
29 lines
822 B
JSON
{
|
|
"name": "coop-credits-anchor",
|
|
"version": "1.0.0",
|
|
"description": "CoopCredits SPL Token Program",
|
|
"scripts": {
|
|
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
|
|
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
|
|
"build": "anchor build",
|
|
"deploy": "anchor deploy",
|
|
"test": "anchor test",
|
|
"idl:export": "anchor idl init --filepath target/idl/coop_credits.json CoopCreDits1111111111111111111111111111111"
|
|
},
|
|
"dependencies": {
|
|
"@coral-xyz/anchor": "^0.29.0",
|
|
"@solana/spl-token": "^0.3.9",
|
|
"@solana/web3.js": "^1.87.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bn.js": "^5.1.0",
|
|
"@types/chai": "^4.3.0",
|
|
"@types/mocha": "^9.0.0",
|
|
"chai": "^4.3.4",
|
|
"mocha": "^9.0.3",
|
|
"prettier": "^2.6.2",
|
|
"ts-mocha": "^10.0.0",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|