{ "name": "solid-panes", "version": "3.5.1", "description": "Solid-compatible Panes: applets and views for the mashlib and databrowser", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types", "build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'", "build-dev": "webpack --progress --colors --mode=development", "build-types": "tsc --emitDeclarationOnly", "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix", "watch": "npm run build-version && babel src -d lib --source-maps --extensions '.ts,.js' --watch", "clean": "rm -rf dist lib", "lint": "eslint 'src/**/*.js' 'src/**/*.ts'", "lint-fix": "eslint 'src/**/*.js' 'src/**/*.ts' --fix", "test": "npm run lint && jest", "test-watch": "npm run lint && jest --onlyChanged --watch", "prepublishOnly": "npm test && npm run build", "postversion": "git push origin main --follow-tags" }, "repository": { "type": "git", "url": "https://github.com/solid/solid-panes" }, "keywords": [ "solid", "decentralized", "widgets", "ui", "web", "rdf", "ldp", "linked", "panes", "app", "data" ], "author": "Tim Berners-Lee ", "license": "MIT", "bugs": { "url": "https://github.com/solid/solid-panes/issues" }, "homepage": "https://github.com/solid/solid-panes", "dependencies": { "@babel/polyfill": "^7.12.1", "@solid/better-simple-slideshow": "^0.1.0", "activitystreams-pane": "^0.6.0", "babel-preset-env": "^1.7.0", "babel-preset-metalab": "^1.0.0", "chat-pane": "^2.4.9", "contacts-pane": "^2.5.0", "folder-pane": "^2.4.7", "issue-pane": "^2.4.5", "markdown-pane": "^0.1.1", "meeting-pane": "^2.3.4", "mime-types": "^2.1.28", "pane-registry": "^2.4.1", "profile-pane": "^1.0.0", "rdflib": "^2.2.3", "react": "^17.0.1", "react-dom": "^17.0.1", "solid-auth-cli": "^1.0.15", "solid-auth-client": "^2.5.5", "solid-namespace": "^0.5.0", "solid-ui": "^2.4.3", "source-pane": "^2.2.8" }, "devDependencies": { "@babel/cli": "^7.12.13", "@babel/core": "^7.12.13", "@babel/preset-env": "^7.12.13", "@babel/preset-typescript": "^7.12.13", "@testing-library/dom": "^7.29.4", "@testing-library/jest-dom": "^5.11.9", "@types/jest": "^26.0.20", "@types/webpack-env": "^1.16.0", "@typescript-eslint/eslint-plugin": "^3.10.1", "@typescript-eslint/parser": "^3.10.1", "babel-loader": "^8.2.2", "babel-plugin-inline-import": "^3.0.0", "babel-preset-es2015": "^6.24.1", "eslint": "^7.19.0", "fork-ts-checker-webpack-plugin": "^6.1.0", "html-webpack-plugin": "^4.5.2", "husky": "^4.3.8", "jest": "^26.6.3", "jest-fetch-mock": "^3.0.3", "lint-staged": "^10.5.3", "raw-loader": "^4.0.2", "standard": "^16.0.3", "ts-jest": "^26.5.0", "ts-loader": "^8.0.14", "typescript": "^4.1.3", "webpack": "^4.46.0", "webpack-cli": "^3.3.12", "webpack-dev-server": "^3.11.2" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm test" } }, "lint-staged": { "src/**/*.(js|ts)": [ "eslint" ] } }