UNPKG

@0x1js/highlighter

Version:

Lightweight, beautiful syntax highlighter for JavaScript, TypeScript, and Bash - Production Optimized

72 lines 1.68 kB
{ "name": "@0x1js/highlighter", "version": "0.1.17", "description": "Lightweight, beautiful syntax highlighter for JavaScript, TypeScript, and Bash - Production Optimized", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "sideEffects": false, "homepage": "https://0x1.onl", "repository": { "type": "git", "url": "https://github.com/Triex/0x1.git", "directory": "0x1-experimental/syntax-highlighter" }, "bugs": { "url": "https://github.com/Triex/0x1/issues" }, "scripts": { "build": "bun run build.ts", "dev": "bun run build.ts --watch", "test": "bun test" }, "keywords": [ "syntax-highlighter", "javascript", "typescript", "bash", "code", "highlighting", "0x1", "react", "production-ready" ], "author": "0x1 Framework", "license": "TDLv1", "publishConfig": { "access": "public" }, "devDependencies": { "@types/bun": "latest", "@types/react": "^18.0.0", "typescript": "^5.0.0" }, "peerDependencies": { "0x1": "*", "react": "^18.0.0" }, "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts", "browser": "./dist/index.js" }, "./styles": { "import": "./dist/styles.css", "require": "./dist/styles.css", "default": "./dist/styles.css" } }, "browser": { "./dist/index.js": "./dist/index.js", "./dist/index.cjs": "./dist/index.js", "./styles": "./dist/styles.css", "./dist/styles.css": "./dist/styles.css" }, "files": [ "dist/", "README.md" ] }