@gamechanger-finance/gc
Version:
Official GameChanger Wallet library and CLI for integrating with Cardano dapps and solve other tasks (https://gamechanger.finance/)
113 lines (112 loc) • 3.76 kB
JSON
{
"name": "@gamechanger-finance/gc",
"version": "1.1.1",
"description": "Official GameChanger Wallet library and CLI for integrating with Cardano dapps and solve other tasks (https://gamechanger.finance/)",
"license": "MIT",
"repository": "https://github.com/GameChangerFinance/gamechanger.git",
"author": {
"name": "Adriano Fiorenza,Javier Ribó",
"email": "info@gamechanger.finance",
"url": "https://gamechanger.finance/"
},
"keywords": [
"Cardano",
"preprod",
"mainnet",
"GameChanger",
"GameChanger Wallet",
"GameChanger Finance",
"GCScript",
"GCScripts",
"dApp",
"dApp connector",
"blockchain",
"utxo",
"eutxo",
"qr",
"json",
"no code"
],
"scripts": {
"format": "node ./node_modules/prettier/bin-prettier.js --write --ignore-path .gitignore .",
"lint": "npm run format && node ./node_modules/eslint/bin/eslint.js --ignore-path .gitignore .",
"clean": "rm -rf dist/",
"bundle-deps": "node ./scripts/postbuild.mjs",
"build-nodejs": "node ./node_modules/rollup/dist/bin/rollup -c rollup.nodejs.config.js",
"build-browser-min": "node ./node_modules/rollup/dist/bin/rollup -c rollup.browser-min.config.js",
"build-browser": "node ./node_modules/rollup/dist/bin/rollup -c rollup.browser.config.js",
"build": "npm run clean && npm run lint && npm run build-types && npm run build-nodejs && npm run build-browser && npm run build-browser-min && npm run bundle-deps && npm run size",
"size": "node ./scripts/size.mjs",
"test": "npm run build && node ./bin/test.js",
"examples:express": "node ./examples/expressBackend.js",
"examples:serve": "serve -p 7000 ./examples/",
"examples": "npm run build && npm run examples:serve",
"npm-publish": "npm publish --access public",
"build-types": "node ./node_modules/typescript/bin/tsc -p tsconfig.types.json",
"pack:local": "npm run build && pnpm pack --out dist/%s-%v.tgz"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.96",
"data-uri-to-buffer": "^3.0.1",
"data-uri-to-file": "^0.1.8",
"easyqrcodejs": "^4.4.10",
"get-stdin": "^8.0.0",
"jsdom": "^29.0.0",
"json-stringify-safe": "^5.0.1",
"lzma": "^2.3.2",
"meow": "^9.0.0",
"pako": "^2.1.0",
"string-placeholder": "^1.0.2",
"svgo": "^3.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-url": "^8.0.2",
"@types/jsdom": "^28.0.0",
"@types/node": "^20.9.1",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"express": "^5.2.1",
"prettier": "2.8.8",
"rollup": "^3.30.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"serve": "^14.2.6",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/browser.js",
"import": "./dist/nodejs.js",
"require": "./dist/nodejs.cjs",
"default": "./dist/nodejs.js"
},
"./dist/browser.min.js": "./dist/browser.min.js",
"./dist/browser.js": "./dist/browser.js",
"./dist/nodejs.js": "./dist/nodejs.js",
"./dist/nodejs.cjs": "./dist/nodejs.cjs",
"./package.json": "./package.json"
},
"bin": {
"gamechanger-cli": "./bin/cli.js"
},
"files": [
"bin/cli.js",
"dist/"
],
"jsdelivr": "./dist/browser.min.js",
"engines": {
"node": ">=24.12.0"
},
"main": "./dist/nodejs.cjs",
"module": "./dist/nodejs.js",
"types": "./dist/index.d.ts",
"browser": "./dist/browser.js",
"unpkg": "./dist/browser.min.js"
}