-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "snikgraph",
"version": "24.10",
"description": "SNIK Graph",
"main": "js/browser/main.ts",
"type": "module",
"homepage": "https://github.com/snikproject/graph#readme",
"dependencies": {
"@types/chai": "^5.0.0",
"@types/cytoscape": "^3.21.8",
"@types/jquery": "^3.5.32",
"@types/micromodal": "^0.3.5",
"@types/node": "^22.7.9",
"@types/stats": "^0.16.30",
"chai": "^5.1.1",
"cytoscape": "^3.30.2",
"cytoscape-context-menus": "^4.2.1",
"cytoscape-euler": "^1.2.3",
"cytoscape-svg": "^0.4.0",
"fuse.js": "^7.0.0",
"golden-layout": "^1.5.9",
"hotkeys-js": "^3.13.7",
"jquery": "^3.7.1",
"loglevel": "^1.9.2",
"micromodal": "^0.4.10",
"notyf": "^3.10.0",
"spin.js": "^4.1.2",
"stats.js": "^0.17.0",
"tippy.js": "^6.3.7",
"vite": "^5.4.10",
"vitest": "^2.1.3"
},
"devDependencies": {
"c8": "^10.1.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"oxlint": "~0.10.2",
"prettier": "^3.3.3",
"typedoc": "^0.26.10",
"typedoc-plugin-merge-modules": "^6.0.2",
"typescript": "^5.6.3",
"vite-plugin-oxlint": "~1.1.0"
},
"keywords": [
"graph",
"visualisation",
"visualization",
"ontology",
"snik",
"hospital information management",
"cytoscape"
],
"bugs": {
"url": "https://github.com/IMISE/snik-cytoscape.js/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build --sourcemap true",
"preview": "vite preview",
"test": "vitest run --pool=forks",
"lint": "oxlint js test -c oxlintrc.json",
"fix": "oxlint js test -c oxlintrc.json --fix",
"typecheck": "tsc --noEmit",
"fmt": "prettier --write js --cache",
"doc": "typedoc --plugin typedoc-plugin-merge-modules",
"manual": "vite-node node/generateManual.mjs && prettier --write html/manual.html",
"prepare": "husky"
},
"lint-staged": {
"*.{js,mjs,ts}": [
"prettier --write --cache"
],
"*.{html,css,json}": [
"prettier --write --cache"
]
},
"repository": {
"type": "git",
"url": "https://github.com/snikproject/graph.git"
},
"author": {
"name": "Konrad Höffner",
"url": "https://github.com/konradhoeffner/"
},
"contributors": [
{
"name": "Thomas Pause",
"url": "https://github.com/ThomasPause"
}
],
"license": "GPLv3"
}