-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 883 Bytes
/
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
{
"name": "zoomtastic",
"version": "2.3.1",
"description": "Tiny image viewer for web!",
"repository": "https://github.com/Kirlovon/zoomtastic.git",
"homepage": "https://github.com/Kirlovon/zoomtastic",
"author": "Kirlovon",
"keywords": [
"javascript",
"javascript-library",
"js",
"browser",
"image",
"image-viewer",
"vite"
],
"license": "MIT",
"main": "./dist/zoomtastic.umd.js",
"exports": "./dist/zoomtastic.umd.js",
"types": "./dist/zoomtastic.d.ts",
"module": "./dist/zoomtastic.es.js",
"scripts": {
"build": "run-p build:*",
"build:dist": "vite build",
"build:types": "tsc zoomtastic.js --declaration --allowJs --emitDeclarationOnly --stripInternal --outDir dist"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"eslint": "^8.48.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}