-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.77 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.77 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@saehrimnir/druidjs",
"version": "0.8.0",
"description": "A JavaScript Library for Dimensionality Reduction.",
"keywords": [
"dimensionality reduction",
"linear algebra",
"matrix"
],
"homepage": "https://renecutura.eu",
"license": "LGPL-3.0-or-later",
"author": {
"name": "Rene Cutura",
"url": "http://renecutura.eu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saehm/druidjs.git"
},
"files": [
"src/**/*.js",
"dist/**/*.cjs",
"dist/**/*.cjs.map",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"type": "module",
"main": "./dist/druid.cjs",
"module": "./dist/druid.js",
"browser": "./dist/druid.js",
"types": "./dist/druid.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/druid.d.ts",
"default": "./dist/druid.js"
},
"require": {
"types": "./dist/druid.d.cts",
"default": "./dist/druid.cjs"
}
}
},
"scripts": {
"build": "tsc && rollup -c rollup.config.mjs",
"dev": "rollup -c rollup.config.mjs -w",
"test": "vitest",
"tsdocs": "typedoc",
"test:types": "tsc --project test/types/tsconfig.json",
"test:types:strict": "tsc --project test/types/tsconfig.strict.json",
"test:coverage": "vitest run --coverage --project node",
"lint": "biome lint ./src",
"format": "biome format ./src --write & biome format ./test --write",
"check": "biome check --write ./src",
"help": "tsdown --help",
"docs:dev": "vitepress dev docs",
"docs:build": "typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@saehrimnir/mistle": "^0.2.4",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"d3": "^7.9.0",
"markdown-it-mathjax3": "^5.2.0",
"playwright": "^1.58.2",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"typedoc": "^0.28.17",
"typedoc-plugin-llms-txt": "^0.1.2",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-plugin-missing-exports": "^4.1.2",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3",
"vitepress": "2.0.0-alpha.16",
"vitest": "^4.0.18",
"vue": "^3.5.29"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]"
}