-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "flickrgallery",
"private": false,
"version": "0.3.3",
"type": "module",
"files": [
"dist"
],
"main": "./dist/flickrgallery.umd.js",
"module": "./dist/flickrgallery.es.js",
"exports": {
".": {
"import": "./dist/flickrgallery.es.js",
"require": "./dist/flickrgallery.umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:docs": "vite build --config vite-docs.config.js",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.3.4",
"photoswipe": "^5.3.6",
"vue": "^3.2.47"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"vite": "^5.0.0"
},
"description": "Vue3 Flickr Gallery",
"repository": {
"type": "git",
"url": "git+https://github.com/katzefudder/FlickrGallery.git"
},
"keywords": [
"flickr",
"gallery",
"vue3",
"vue plugin"
],
"author": "Florian Dehn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/katzefudder/FlickrGallery/issues"
},
"homepage": "https://github.com/katzefudder/FlickrGallery#readme"
}