unified-query
Version:
Composable search input with autocompletion and a rich query-language parser for the Unified Data System
93 lines (92 loc) • 2.52 kB
JSON
{
"name": "unified-query",
"version": "0.0.10",
"author": "Luka Dover",
"email": "luka.dover@gmail.com",
"description": "Composable search input with autocompletion and a rich query-language parser for the Unified Data System",
"keywords": [
"svelte",
"search",
"autocomplete",
"codemirror",
"query-language"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ldover/unified-query.git"
},
"license": "Unlicense",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"pack": "npm run build && npm pack",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"dependencies": {
"@codemirror/autocomplete": "^6.0.2",
"@codemirror/commands": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/lang-markdown": "^6.0.0",
"@codemirror/language": "^6.2.1",
"@codemirror/language-data": "^6.1.0",
"@codemirror/state": "^6.1.1",
"@codemirror/view": "^6.0.2",
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.1.6",
"@lezer/javascript": "^1.0.0",
"@lezer/markdown": "^1.0.0",
"codemirror": "^6.0.0",
"moment": "^2.30.1",
"style-mod": "^4.1.0"
},
"peerDependencies": {
"svelte": "^4.0.0"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.27.4",
"@sveltejs/package": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.30.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"publint": "^0.1.9",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vitest": "^0.32.2"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}