-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
77 lines (77 loc) · 2.49 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
70
71
72
73
74
75
76
77
{
"name": "@apple/hierarchical-confusion-matrix",
"author": "Apple Inc.",
"version": "1.1.1",
"license": "SEE LICENSE IN `LICENSE`",
"files": [
"src",
"package",
"README.md"
],
"main": "./package/confMat.umd.cjs",
"module": "./package/confMat.js",
"exports": {
".": {
"import": "./package/confMat.js",
"require": "./package/confMat.umd.cjs"
},
"./package/*.css": {
"import": "./package/*.css",
"require": "./package/*.css"
}
},
"types": "./dist/index.d.ts",
"style": "./dist/style.css",
"type": "module",
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.30.4",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@types/cwise": "^1.0.6",
"@types/d3-array": "^3.2.1",
"@types/d3-dsv": "^3.0.7",
"@types/d3-scale": "^4.0.8",
"@types/lodash": "^4.17.13",
"@types/ndarray": "^1.0.14",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-svelte": "^2.43.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^3.59.2",
"svelte-check": "^3.8.6",
"tslib": "^2.8.1",
"typescript": "^5.6.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.0.5"
},
"scripts": {
"build": "vite build",
"build:lib": "vite build --config vite.config.lib.ts",
"prepack": "yarn build:lib",
"dev": "vite dev",
"preview": "vite preview",
"coverage": "vitest run --coverage",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"fmt": "prettier --ignore-path .eslintignore --check .",
"lint": "eslint . --max-warnings 0",
"fix:lint": "eslint . --fix",
"fix:fmt": "prettier --ignore-path .eslintignore --write ."
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-dsv": "^3.0.1",
"d3-scale": "^4.0.2",
"lodash": "^4.17.21",
"ndarray": "^1.0.19",
"ndarray-ops": "^1.2.2",
"vega-scale": "^7.4.1"
}
}