UNPKG

webshap

Version:

Explain any ML models anywhere

68 lines 1.98 kB
{ "name": "webshap", "version": "0.1.4", "description": "Explain any ML models anywhere", "main": "./dist/index.umd.js", "module": "./dist/index.es.js", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.umd.js", "import": "./dist/index.es.js", "types": "./dist/index.d.ts" } }, "repository": { "type": "git", "url": "git+https://github.com/xiaohk/webshap" }, "keywords": [ "machine-learning", "machine", "learning", "ai", "metrics", "interpretability" ], "author": "Jay Wang", "license": "MIT", "bugs": { "url": "https://github.com/xiaohk/webshap/issues" }, "homepage": "https://github.com/xiaohk/webshap#readme", "devDependencies": { "@rollup/plugin-typescript": "^11.0.0", "@tensorflow/tfjs": "^4.2.0", "@types/d3-random": "^3.0.1", "@typescript-eslint/eslint-plugin": "^5.49.0", "@typescript-eslint/parser": "^5.49.0", "@vitest/coverage-c8": "^0.28.4", "c8": "^7.12.0", "d3-random": "^3.0.1", "eslint": "^8.32.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-prettier": "^4.2.1", "happy-dom": "^8.1.5", "make-coverage-badge": "^1.2.0", "mathjs": "^11.5.0", "prettier": "^2.8.3", "rimraf": "^4.1.2", "rollup": "^3.10.1", "seedrandom": "^3.0.5", "tslib": "^2.4.1", "typedoc": "^0.23.24", "typescript": "^4.9.4", "vite": "^4.0.4", "vitest": "^0.28.1" }, "scripts": { "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "coverage": "vitest run --coverage && c8 report && pnpm run coverage:badge", "coverage:badge": "pnpx make-coverage-badge --output-path ./imgs/coverage-badge.svg", "build": "pnpm run clean && vite build", "build:doc": "pnpm typedoc ./src/index.ts --excludeExternals --externalPattern 'node_modules' --name 'WebSHAP' --out './gh-pages/doc/' '$SRC_DIR'", "clean": "rimraf ./dist" } }