forked from sazarkin/vue-image-compare
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.62 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
{
"$schema": "https://json.schemastore.org/package",
"author": "Marcin Cichocki <[email protected]>",
"bugs": "https://github.com/Shuunen/vue-image-compare/issues",
"contributors": [
"Romain Racamier-Lafon <[email protected]> (https://github.com/Shuunen)",
"Ctf0 (https://github.com/ctf0)",
"Marcin Cichocki <[email protected]>"
],
"description": "Compare two images with a fancy slider",
"devDependencies": {
"@tsconfig/strictest": "2.0",
"eslint": "*",
"eslint-plugin-shuunen": "0.2",
"repo-check": "1.37",
"shuutils": "8.1",
"vite": "2.9",
"vite-plugin-vue2": "2.0",
"vue": "2.7",
"vue-template-compiler": "2.7"
},
"displayName": "Vue Image Compare",
"files": [
"src/vue-image-compare.*"
],
"homepage": "https://github.com/Shuunen/vue-image-compare",
"keywords": [
"vue",
"image",
"compare",
"comparison",
"slider",
"component"
],
"license": "MIT",
"main": "src/vue-image-compare.vue",
"name": "vue-image-compare2",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Shuunen/vue-image-compare.git"
},
"scripts": {
"build": "vite build && unique-mark dist/assets/index.*.js && echo build success",
"check": "pnpm install && echo install success && repo-check && echo repo-check success && pnpm build && pnpm lint && echo check success",
"dev": "vite",
"lint": "eslint --cache src && echo lint success",
"postversion": "git push && git push --tags && npm publish",
"preversion": "pnpm check",
"serve": "vite preview"
},
"version": "1.0.0"
}