{ "name": "solid-logic", "version": "4.0.1", "description": "Core business logic of SolidOS", "type": "module", "main": "dist/solid-logic.js", "module": "dist/solid-logic.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/solid-logic.esm.js", "require": "./dist/solid-logic.js", "types": "./dist/index.d.ts" } }, "sideEffects": false, "files": [ "dist/", "README.md", "LICENSE" ], "scripts": { "clean": "rm -rf dist src/versionInfo.ts", "build": "npm run clean && npm run typecheck && npm run build-version && npm run build-js && npm run build-dist && npm run postbuild-js", "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix", "build-js": "tsc", "build-dist": "webpack --progress", "postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map", "lint": "eslint", "typecheck": "tsc --noEmit", "typecheck-test": "tsc --noEmit -p tsconfig.test.json", "test": "jest --no-coverage", "test-coverage": "jest --coverage", "test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug", "prepublishOnly": "npm run build && npm run lint && npm run test", "preversion": "npm run lint && npm run typecheck && npm test", "postversion": "git push origin main --follow-tags", "watch": "npm run build-version && tsc --watch" }, "repository": { "type": "git", "url": "git+https://github.com/solidos/solid-logic.git" }, "author": "", "license": "MIT", "bugs": { "url": "https://github.com/solidos/solid-logic/issues" }, "homepage": "https://github.com/solidos/solid-logic#readme", "devDependencies": { "@babel/core": "^7.28.4", "@babel/preset-env": "^7.28.3", "@babel/preset-typescript": "^7.27.1", "@types/jest": "^30.0.0", "@typescript-eslint/parser": "^8.34.0", "babel-jest": "^30.1.2", "babel-loader": "^10.0.0", "eslint": "^9.38.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "jest": "^30.2.0", "jest-environment-jsdom": "^30.0.2", "jest-fetch-mock": "^3.0.3", "terser-webpack-plugin": "^5.3.14", "ts-loader": "^9.5.4", "tslib": "^2.8.1", "typescript": "^5.9.2", "webpack": "^5.101.3", "webpack-cli": "^6.0.1" }, "dependencies": { "@inrupt/solid-client-authn-browser": "^3.1.0", "solid-namespace": "^0.5.4" }, "peerDependencies": { "rdflib": "^2.3.0" } }