| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "name": "@codama/nodes-from-anchor",
- "version": "1.3.0",
- "description": "Node specifications and helpers for the Codama standard",
- "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"
- }
- },
- "browser": {
- "./dist/index.node.cjs": "./dist/index.browser.cjs",
- "./dist/index.node.mjs": "./dist/index.browser.mjs"
- },
- "main": "./dist/index.node.cjs",
- "module": "./dist/index.node.mjs",
- "react-native": "./dist/index.react-native.mjs",
- "types": "./dist/types/index.d.ts",
- "type": "commonjs",
- "files": [
- "./dist/types",
- "./dist/index.*"
- ],
- "sideEffects": false,
- "keywords": [
- "solana",
- "framework",
- "standard",
- "specifications"
- ],
- "scripts": {
- "build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
- "dev": "vitest --project node",
- "lint": "eslint . && prettier --check .",
- "lint:fix": "eslint --fix . && prettier --write .",
- "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"
- },
- "dependencies": {
- "@codama/errors": "workspace:*",
- "@codama/nodes": "workspace:*",
- "@codama/visitors": "workspace:*",
- "@solana/codecs": "^5.0.0",
- "@noble/hashes": "^2.0.1"
- },
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/codama-idl/codama"
- },
- "bugs": {
- "url": "http://github.com/codama-idl/codama/issues"
- },
- "browserslist": [
- "supports bigint and not dead",
- "maintained node versions"
- ]
- }
|