UNPKG

@pix.js/dict

Version:
62 lines 1.57 kB
{ "name": "@pix.js/dict", "version": "1.0.0", "description": "Dict API sdk", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "import": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "require": "./dist/index.cjs" } }, "author": { "name": "Victor Mesquita", "email": "contato@victormesquita.dev" }, "license": "UNLICENSED", "homepage": "https://github.com/victor-teles/pix.js#readme", "bugs": "https://github.com/victor-teles/pix.js/issues", "repository": { "type": "git", "url": "git+https://github.com/victor-teles/pix.js.git" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "files": [ "/dist" ], "keywords": [ "typescript", "pix", "pix.js", "dict", "dict api", "dict sdk" ], "engines": { "node": ">=21" }, "dependencies": { "change-case": "^5.4.4", "fast-xml-parser": "^4.5.1", "xml-crypto": "^6.0.0", "@pix.js/core": "1.0.0" }, "scripts": { "test": "vitest run --passWithNoTests", "build": "tsup src/index.ts --format cjs,esm --dts --clean --sourcemap", "dev": "tsc --watch", "format": "biome check --formatter-enabled=true --linter-enabled=false --organize-imports-enabled=true --write .", "lint": "biome check src --formatter-enabled=false --organize-imports-enabled=true --write .", "ci": "biome ci" } }