-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "big-shot",
"version": "0.12.0",
"description": "A Vue-based image/video slide show widget",
"author": "Callum Gare <callum@gare.au>",
"repository": "github:callumgare/big-shot",
"keywords": [
"slide-show",
"slide show",
"slideshow",
"vue",
"photoswipe"
],
"license": "MIT",
"type": "module",
"main": "./big-shot.umd.js",
"module": "./big-shot.es.js",
"exports": {
".": {
"import": "./dist/big-shot.es.js",
"require": "./dist/big-shot.umd.js"
},
"./css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && vue-tsc -p tsconfig.declaration-export.json",
"example:build": "npm run build && vite -c example/vite.config.ts build",
"example:serve": "http-server built-example",
"preview": "vite preview",
"lint": "concurrently npm:lint:*",
"lint-fix": "concurrently npm:lint-fix:*",
"lint:stylelint": "stylelint '{src,dev}/*.{vue,scss}' ",
"lint-fix:stylelint": "stylelint '{src,dev}/*.{vue,scss}' --fix",
"lint:eslint": "eslint --ext .vue,.js src/ example/",
"lint-fix:eslint": "eslint --ext .vue,.js --fix src/ example/",
"release": "release-it"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^12.7.0",
"concurrently": "^7.6.0",
"eslint": "^8.33.0",
"eslint-plugin-vue": "^9.9.0",
"http-server": "^14.1.1",
"postcss-html": "^1.5.0",
"postcss-nesting": "^11.1.0",
"release-it": "^15.6.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"stylelint": "^14.16.1",
"stylelint-config-recommended-vue": "^1.4.0",
"swiper": "^11.1.15",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vue": "^3.2.45",
"vue-tsc": "^1.0.11"
},
"dependencies": {
"hls.js": "^1.5.17"
}
}