UNPKG

@macalinao/codama-renderers-js-esm

Version:

ESM-native TypeScript renderer for Codama JavaScript code generation

64 lines (63 loc) 1.51 kB
{ "name": "@macalinao/codama-renderers-js-esm", "version": "0.2.3", "description": "ESM-native TypeScript renderer for Codama JavaScript code generation", "type": "module", "sideEffects": false, "author": "Ian Macalinao <me@ianm.com>", "homepage": "https://github.com/macalinao/coda", "license": "Apache-2.0", "keywords": [ "codama", "coda", "solana", "esm", "typescript", "code-generation", "ian-macalinao" ], "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist/", "src/" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/macalinao/coda.git", "directory": "packages/codama-renderers-js-esm" }, "scripts": { "build": "tsc", "clean": "rm -fr dist/", "lint": "eslint . --cache", "test": "echo 'No tests yet'" }, "dependencies": { "@codama/renderers-core": "^1.0.19", "@codama/renderers-js": "^1.3.4", "codama": "^1.3.3" }, "devDependencies": { "@macalinao/eslint-config": "^5", "@macalinao/tsconfig": "^3.2.3", "eslint": "^9.33.0", "typescript": "^5.9.2" }, "lint-staged": { "*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [ "biome check --write --no-errors-on-unmatched", "eslint --fix --cache" ], "*.{json,jsonc,html}": "biome format --write --no-errors-on-unmatched" } }