UNPKG

chat-pane

Version:

Solid-compatible Panes: Chat

89 lines (88 loc) 2.22 kB
{ "name": "chat-pane", "version": "2.4.27", "description": "Solid-compatible Panes: Chat", "main": "./lib/main.js", "files": [ "src", "lib", "dist" ], "scripts": { "build": "npm run clean && webpack && npm run build-lib", "build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'", "clean": "rm -rf lib && rm -rf dist", "test": "npm run lint && jest", "lint": "eslint '*.js'", "lint-fix": "eslint '*.js' --fix", "ignore:prepublishOnly": "npm test && npm run build && npm run build-lib", "ignore:postpublish": "git push origin main --follow-tags", "watch": "webpack --watch", "start": "webpack serve --open", "dev": "webpack serve --config webpack.dev.config.js --open" }, "repository": { "type": "git", "url": "https://github.com/solid/chat-pane" }, "keywords": [ "solid", "chat", "message", "discusssion", "decentralized", "web", "rdf", "ldp", "linked", "pane", "app", "data" ], "author": "Tim Berners-Lee <timbl@mit.edu>", "license": "MIT", "bugs": { "url": "https://github.com/solid/chat-pane/issues" }, "homepage": "https://github.com/solid/chat-pane", "dependencies": { "rdflib": "^2.2.36", "solid-logic": "^3.0.8", "solid-ui": "^2.5.1" }, "devDependencies": { "@babel/cli": "^7.26.4", "@babel/core": "^7.26.7", "@babel/preset-env": "^7.26.7", "@babel/preset-typescript": "^7.26.0", "@testing-library/dom": "^9.3.4", "@testing-library/jest-dom": "^5.17.0", "@types/jest": "^29.5.14", "babel-jest": "^29.7.0", "babel-loader": "^8.4.1", "buffer": "^6.0.3", "eslint": "^8.57.1", "html-webpack-plugin": "^5.6.3", "husky": "^7.0.4", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-fetch-mock": "^3.0.3", "lint-staged": "^12.5.0", "node-polyfill-webpack-plugin": "^2.0.1", "typescript": "^4.9.5", "webpack": "^5.97.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.15.2" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm test" } }, "lint-staged": { "*.js": [ "eslint" ] } }