UNPKG

@codama/visitors

Version:

All visitors for the Codama framework

62 lines 1.68 kB
{ "name": "@codama/visitors", "version": "1.10.2", "description": "All visitors for the Codama framework", "keywords": [ "framework", "solana", "standard", "visitors" ], "bugs": { "url": "http://github.com/codama-idl/codama/issues" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/codama-idl/codama" }, "files": [ "./dist/types", "./dist/index.*" ], "type": "commonjs", "sideEffects": false, "main": "./dist/index.node.cjs", "module": "./dist/index.node.mjs", "browser": { "./dist/index.node.cjs": "./dist/index.browser.cjs", "./dist/index.node.mjs": "./dist/index.browser.mjs" }, "types": "./dist/types/index.d.ts", "react-native": "./dist/index.react-native.mjs", "exports": { "types": "./dist/types/index.d.ts", "react-native": "./dist/index.react-native.mjs", "browser": { "import": "./dist/index.browser.mjs", "require": "./dist/index.browser.cjs" }, "node": { "import": "./dist/index.node.mjs", "require": "./dist/index.node.cjs" } }, "dependencies": { "@codama/errors": "1.10.2", "@codama/nodes": "1.10.2", "@codama/visitors-core": "1.10.2" }, "browserslist": [ "supports bigint and not dead", "maintained node versions" ], "scripts": { "build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json", "dev": "vitest --project node", "test": "pnpm test:types && pnpm test:treeshakability && pnpm test:unit", "test:treeshakability": "for file in dist/index.*.mjs; do agadoo $file; done", "test:types": "tsc --noEmit", "test:unit": "vitest run" } }