UNPKG

@remotex-labs/xmap

Version:

A library with a sourcemap parser and TypeScript code formatter for the CLI

105 lines (104 loc) 3.03 kB
{ "name": "@remotex-labs/xmap", "main": "dist/cjs/index.js", "type": "module", "types": "./dist/index.d.ts", "module": "./dist/esm/index.js", "author": "Garefild", "version": "3.0.5", "license": "Mozilla Public License Version 2.0", "description": "A library with a sourcemap parser and TypeScript code formatter for the CLI", "homepage": "https://github.com/remotex-lab/xMap", "repository": { "type": "git", "url": "git+https://github.com/remotex-lab/xMap.git" }, "bugs": { "url": "https://github.com/remotex-lab/xMap/issues" }, "keywords": [ "xmap", "xMap", "sourcemap", "parser", "typescript", "formatter", "CLI", "syntax-highlighting", "code-formatting", "javascript", "debugging", "developer-tools", "typescript runner" ], "engines": { "node": ">=18" }, "typesVersions": { "*": { "*": [ "./dist/*" ], "parser.component": [ "./dist/parser.component.d.ts" ], "formatter.component": [ "./dist/formatter.component.d.ts" ], "highlighter.component": [ "./dist/highlighter.component.d.ts" ] } }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./parser.component": { "types": "./dist/parser.component.d.ts", "import": "./dist/esm/parser.component.js", "require": "./dist/cjs/parser.component.js" }, "./formatter.component": { "types": "./dist/formatter.component.d.ts", "import": "./dist/esm/formatter.component.js", "require": "./dist/cjs/formatter.component.js" }, "./highlighter.component": { "types": "./dist/highlighter.component.d.ts", "import": "./dist/esm/highlighter.component.js", "require": "./dist/cjs/highlighter.component.js" }, "./package.json": "./package.json" }, "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "dev": "xBuild -w", "test": "jest", "build": "xBuild", "test:coverage": "jest --coverage", "lint": "xbuild --tc && eslint . -c ./eslint.config.mjs", "ci:test": "jest", "ci:clean": "rm -rf ./dist", "ci:build": "npm run build" }, "devDependencies": { "jest": "^29.7.0", "eslint": "^9.24.0", "typescript-eslint": "^8.29.0", "eslint-plugin-tsdoc": "^0.4.0", "@swc/jest": "^0.2.37", "@types/jest": "^29.5.14", "@types/node": "^22.14.0", "@remotex-labs/xbuild": "^1.5.7" }, "dependencies": { "typescript": "^5.8.3" } }