-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.31 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tourdino",
"description": "Calculate and visualize similarity measures.",
"homepage": "https://phovea.caleydo.org",
"version": "9.0.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org/"
},
"contributors": [
{
"name": "Klaus Eckelt",
"email": "[email protected]",
"url": "https://www.jku.at/en/institute-of-computer-graphics/about-us/team/klaus-eckelt/"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/caleydo/tourdino/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Caleydo/tourdino.git"
},
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"types": [
"./dist/index.d.ts",
"./src/index.ts"
],
"import": [
"./dist/index.js",
"./src/index.ts"
],
"default": [
"./dist/index.js",
"./src/index.ts"
]
},
"./phovea_registry": [
"./dist/phovea_registry.js",
"./src/phovea_registry.ts"
],
"./dist/phovea_registry": [
"./dist/phovea_registry.js",
"./src/phovea_registry.ts"
],
"./src/scss/*": [
"./dist/scss/*",
"./src/scss/*"
],
"./dist/scss/*": [
"./dist/scss/*",
"./src/scss/*"
],
"./package.json": "./package.json"
},
"files": [
"src",
"dist"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"scripts": {
"all": "npm run lint:fix && npm run test && npm run build && npm run dist",
"build": "npm run clean && npm run compile && npm run copy",
"clean": "rimraf build dist lib",
"compile:watch": "visyn_scripts compile --watch",
"compile": "visyn_scripts compile",
"copy": "visyn_scripts copy",
"cy:open": "cypress open",
"cy:run": "cypress run",
"delete-dependencies": "rimraf node_modules",
"predist": "npm run lint && npm run test && npm run build",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/tourdino.tar.gz *",
"docs": "visyn_scripts docs",
"lint:fix": "visyn_scripts lint --fix",
"lint": "visyn_scripts lint",
"start": "visyn_scripts start --env workspace_mode=single",
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook",
"storybook": "NODE_OPTIONS=--max_old_space_size=4096 start-storybook -p 6006",
"test": "visyn_scripts test",
"webpack:dev": "visyn_scripts build --mode development --env workspace_mode=single",
"webpack:prod": "visyn_scripts build --mode production --env workspace_mode=single"
},
"devDependencies": {
"@types/select2": "4.0.44",
"jest-canvas-mock": "^2.3.1",
"worker-loader": "^2.0.0"
},
"dependencies": {
"d3.parsets": "git+ssh://[email protected]/jasondavies/d3-parsets#e758679787f009b760d42a41189102bf216f39ab",
"jstat": "^1.9.4",
"lodash": "~4.17.20",
"tdp_core": "^23.0.2",
"vega": "~5.20.0",
"vega-embed": "6.19.1",
"vega-functions": "5.12.0",
"vega-lite": "5.1.1",
"vega-parser": "6.1.3",
"visyn_scripts": "^7.0.1",
"xxhashjs": "^0.2.2"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"visyn": {
"entries": {
"app": "./index.js"
}
},
"packageManager": "[email protected]"
}