UNPKG

qlik-script-editor

Version:

A React component library for Qlik Sense script editing with syntax highlighting, autocomplete, and theme support

97 lines (96 loc) 2.37 kB
{ "name": "qlik-script-editor", "version": "2.0.0", "description": "A React component library for Qlik Sense script editing with syntax highlighting, autocomplete, and theme support", "type": "module", "main": "./lib/index.cjs", "module": "./lib/index.js", "types": "./lib/index.d.ts", "exports": { ".": { "types": "./lib/index.d.ts", "import": "./lib/index.js", "require": "./lib/index.cjs" }, "./lib/style.css": "./lib/style.css", "./styles": "./lib/style.css", "./package.json": "./package.json" }, "files": [ "lib", "README.md", "CHANGELOG.md" ], "scripts": { "build": "vite build", "dev": "vite build --watch", "lint": "eslint src --max-warnings 0", "lint:fix": "eslint src --fix", "type-check": "tsc --noEmit", "clean": "rimraf lib", "prepublishOnly": "npm run clean && npm run build" }, "keywords": [ "qlik", "qlik-sense", "script", "editor", "react", "typescript", "syntax-highlighting", "autocomplete", "theme", "ui-library", "code-editor", "qvs" ], "author": "ranvithm <https://github.com/ranvithm>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ranvithm/qlik-script-editor.git" }, "bugs": { "url": "https://github.com/ranvithm/qlik-script-editor/issues" }, "homepage": "https://ranvithm.github.io/qlik-editor/", "peerDependencies": { "react": ">=17.0.0", "react-dom": ">=17.0.0" }, "dependencies": { "clsx": "^2.1.0" }, "devDependencies": { "@types/node": "^20.19.9", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "@vitejs/plugin-react": "^4.2.0", "eslint": "^8.57.0", "eslint-plugin-react": "^7.34.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.0", "globals": "^16.3.0", "rimraf": "^6.0.1", "typescript": "^5.3.0", "vite": "^5.1.0", "vite-plugin-dts": "^3.7.0" }, "sideEffects": [ "**/*.css" ], "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }