UNPKG

meeting-pane

Version:

Solid-compatible Panes: meeting collaborative tool

81 lines (80 loc) 2.19 kB
{ "name": "meeting-pane", "version": "2.4.20", "description": "Solid-compatible Panes: meeting collaborative tool", "main": "./lib/meetingPane.js", "files": [ "src", "lib" ], "scripts": { "build": "npm run clean && npm run build-lib && webpack", "build-browserified": "npm run build", "build-dist": "webpack --progress --color --mode=production", "build-dev": "webpack --progress --color --mode=development", "build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'", "build-types": "npm run build-version && tsc --declaration --emitDeclarationOnly", "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix", "lint": "eslint '*.js'", "lint-fix": "eslint '*.js' --fix", "clean": "rm -rf lib && rm -rf dist", "test": "npm run lint", "ignore:prepublishOnly": "npm test && npm run build", "ignore:postpublish": "git push origin main --follow-tags", "watch": "webpack --watch", "start": "webpack serve --open" }, "repository": { "type": "git", "url": "https://github.com/solid/meeting-pane" }, "keywords": [ "solid", "meetings", "decentralized", "web", "rdf", "ldp", "linked", "pane", "app", "data" ], "author": "Tim Berners-Lee <timbl@mit.edu>", "license": "MIT", "bugs": { "url": "https://github.com/solidos/meeting-pane/issues/" }, "homepage": "https://github.com/solidos/meeting-pane/", "dependencies": { "solid-ui": "^2.5.1" }, "devDependencies": { "@babel/cli": "^7.26.4", "@babel/core": "^7.26.7", "@babel/preset-env": "^7.26.7", "@webpack-cli/serve": "^3.0.1", "buffer": "^6.0.3", "eslint": "^9.19.0", "globals": "^15.14.0", "html-webpack-plugin": "^5.6.3", "husky": "^9.1.7", "lint-staged": "^15.4.3", "node-polyfill-webpack-plugin": "^4.1.0", "typescript": "^5.7.3", "webpack": "^5.97.1", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.0" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm test" } }, "lint-staged": { "*.js": [ "eslint" ] } }