UNPKG

mashlib

Version:
102 lines (101 loc) 2.69 kB
{ "name": "mashlib", "version": "1.10.4", "description": "Data mashup library", "main": "./index.js", "files": [ "index.js", "dist" ], "scripts": { "build": "npm run clean && npm run build-version && npm run build-dev && npm run build-dist", "build-dev": "webpack --progress", "build-dist": "webpack --progress --mode=production", "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix", "watch": "npm run build-version && webpack --watch", "clean": "rm -rf dist", "lint": "eslint 'src/**/*.ts'", "lint-fix": "eslint 'src/**/*.ts' --fix", "test": "npm run lint", "ignore:prepublishOnly": "npm test && npm run build && npm run bundlesize", "bundlesize": "bundlesize", "ignore:postpublish": "git push origin main --follow-tags", "startStaticOS": "webpack serve --config webpack.config.js --open /browse-test.html" }, "repository": { "type": "git", "url": "https://github.com/solidos/mashlib" }, "keywords": [ "solid", "decentralized", "widgets", "ui", "web", "rdf", "ldp", "panes", "linked", "data", "browser" ], "author": "Tim Berners-Lee <timbl@mit.edu>", "license": "MIT", "bugs": { "url": "https://github.com/solidos/mashlib/issues" }, "homepage": "https://github.com/solidos/mashlib", "dependencies": { "rdflib": "^2.2.36", "solid-logic": "^3.0.8", "solid-panes": "^3.6.3" }, "devDependencies": { "@babel/cli": "^7.26.4", "@babel/core": "^7.26.8", "@babel/plugin-transform-runtime": "^7.26.8", "@babel/preset-env": "^7.26.8", "@babel/preset-typescript": "^7.26.0", "@typescript-eslint/eslint-plugin": "^8.24.0", "@typescript-eslint/parser": "^8.24.0", "babel-loader": "^9.2.1", "bundlesize2": "^0.0.34", "copy-webpack-plugin": "^12.0.2", "css-loader": "^7.1.2", "eslint": "^9.20.1", "file-loader": "^6.2.0", "globals": "^15.15.0", "html-webpack-plugin": "^5.6.3", "husky": "^9.1.7", "lint-staged": "^15.4.3", "mini-css-extract-plugin": "^2.9.2", "node-polyfill-webpack-plugin": "^4.1.0", "typescript": "^5.7.3", "url-loader": "^4.1.1", "webpack": "^5.98.0", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.ts": [ "eslint" ] }, "bundlesize": [ { "path": "./dist/*.min.js", "maxSize": "2 MB", "compression": "brotli" }, { "path": "./dist/*[^.min].js", "maxSize": "3 MB", "compression": "brotli" } ] }