UNPKG

@xapi-js/core

Version:

Core utilities and types for X-API.

45 lines 1.07 kB
{ "name": "@xapi-js/core", "type": "module", "version": "1.1.1", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "description": "Core utilities and types for X-API.", "exports": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "files": [ "dist" ], "keywords": [ "tobesoft", "x-api", "xapi" ], "license": "MIT", "homepage": "https://github.com/Clickin/xapi-js", "repository": { "type": "git", "url": "https://github.com/Clickin/xapi-js" }, "bugs": "https://github.com/Clickin/xapi-js/issues", "author": "Clickin <josh87786@gmail.com>", "devDependencies": { "@types/node": "^20.11.24", "typescript": "^5.3.3" }, "dependencies": { "stax-xml": "^0.2.4", "txml": "^5.1.1" }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "test": "vitest run", "test:watch": "vitest", "coverage": "vitest run --coverage", "benchmark": "node test/performance.test.mjs" } }