-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"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",
"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",
"publish": "pnpm publish --access=public"
},
"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"
}
}