@principal-ade/industry-themed-terminal
Version:
Industry-themed terminal wrapper with integrated theming for xterm.js
120 lines (119 loc) • 3.88 kB
JSON
{
"name": "@principal-ade/industry-themed-terminal",
"version": "0.1.14",
"description": "Industry-themed terminal wrapper with integrated theming for xterm.js",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles.css": "./dist/styles.css",
"./package.json": "./package.json"
},
"scripts": {
"build": "bun run clean && bun run build:esm && bun run build:types && bun run build:styles",
"build:esm": "NODE_ENV=production bun build ./index.ts --outdir ./dist --entry-naming [dir]/[name].[ext] --format esm --target browser --external react --external react-dom --external @xterm/xterm --external @xterm/addon-fit --external @xterm/addon-search --external @xterm/addon-web-links --external @xterm/addon-unicode11 --external @xterm/addon-webgl --external @principal-ade/industry-theme --external lucide-react",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap",
"build:styles": "cp src/styles/terminal-theme.css dist/styles.css",
"dev": "bun run build --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist coverage",
"storybook": "storybook dev -p 6009",
"build-storybook": "storybook build"
},
"keywords": [
"terminal",
"xterm",
"xterm.js",
"pty",
"theme",
"industry"
],
"author": "Principal ADE Team",
"license": "MIT",
"dependencies": {
"@principal-ade/industry-theme": "^0.1.2"
},
"peerDependencies": {
"@xterm/addon-fit": ">=0.10.0",
"@xterm/addon-search": ">=0.15.0",
"@xterm/addon-unicode11": ">=0.8.0",
"@xterm/addon-web-links": ">=0.11.0",
"@xterm/addon-webgl": ">=0.18.0",
"@xterm/xterm": ">=5.5.0",
"lucide-react": ">=0.263.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"peerDependenciesMeta": {
"@xterm/addon-unicode11": {
"optional": true
},
"@xterm/addon-webgl": {
"optional": true
},
"lucide-react": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@storybook/addon-docs": "^9.1.13",
"@storybook/addon-onboarding": "^9.1.13",
"@storybook/addon-webpack5-compiler-swc": "^4.0.1",
"@storybook/react-webpack5": "^9.1.13",
"@types/bun": "latest",
"@types/node": "^22.15.26",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.8",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"esbuild": "^0.25.8",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-storybook": "^9.1.13",
"lucide-react": "^0.263.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"storybook": "^9.1.13",
"typescript": "^5.0.4",
"typescript-eslint": "^8.38.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/principal-ade/industry-themed-terminal.git"
},
"homepage": "https://principal-ade.com"
}