-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.59 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
90
91
92
93
94
{
"name": "openlime",
"version": "1.2.6",
"description": "Open Layered IMage Explorer",
"license": "GPL-3.0",
"private": false,
"main": "dist/js/openlime.cjs.js",
"module": "dist/js/openlime.esm.js",
"types": "dist/types/openlime.d.ts",
"unpkg": "dist/js/openlime.umd.js",
"jsdelivr": "dist/js/openlime.umd.js",
"exports": {
".": {
"import": {
"types": "./dist/types/openlime.d.ts",
"default": "./dist/js/openlime.esm.js"
},
"require": {
"types": "./dist/types/openlime.d.ts",
"default": "./dist/js/openlime.cjs.js"
},
"default": "./dist/js/openlime.umd.js"
}
},
"authors": [
{
"name": "Visual Computing Lab, ISTI-CNR",
"url": "https://vcg.isti.cnr.it/"
},
{
"name": "CRS4 Visual and Data-intensive Computing Group",
"url": "https://www.crs4.it/research/vdic/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/cnr-isti-vclab/openlime.git"
},
"bugs": {
"url": "https://github.com/cnr-isti-vclab/openlime/issues"
},
"homepage": "https://cnr-isti-vclab.github.io/openlime/",
"keywords": [
"viewer",
"image",
"multiresolution",
"rti",
"brdf",
"lens",
"3d",
"webgl",
"canvas",
"visualization",
"cultural-heritage",
"cultural",
"heritage",
"webapp",
"web-app"
],
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -c webpack.config.js --mode development",
"rollup": "rollup -c rollup.config.js --extend",
"build-types": "tsc --allowJs --declaration --emitDeclarationOnly --outDir dist/types dist/js/openlime.esm.js && mv dist/types/openlime.esm.d.ts dist/types/openlime.d.ts",
"nodemon": "nodemon --watch ./src --exec npm run rollup",
"doc": "jsdoc -c jsdoc/jsdoc.json -R README.md && mkdir -p docs/img && cp -r jsdoc/static/img/* docs/img/",
"update-readme": "node utils/update-readme.js",
"prepublishOnly": "npm run update-readme && npm run rollup && npm run build-types && npm run doc"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"copy-webpack-plugin": "^10.2.4",
"html-webpack-plugin": "^5.5.0",
"jsdoc": "^4.0.4",
"moment": "^2.30.1",
"rollup": "^2.52.3",
"rollup-plugin-terser": "^7.0.2",
"sanitize-html": "^2.15.0",
"taffydb": "^2.7.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"files": [
"dist/css",
"dist/skin",
"dist/js",
"dist/types",
"LICENSE",
"package.json",
"README.md"
]
}