-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 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
{
"name": "vue-progressive-image",
"version": "5.0.6",
"description": "Vue progressive image loading plugin",
"type": "module",
"exports": {
".": {
"types": "./dist/vue-progressive-image.d.ts",
"import": "./dist/vue-progressive-image.js"
},
"./style.css": {
"import": "./dist/vue-progressive-image.css"
}
},
"main": "./dist/vue-progressive-image.js",
"module": "./dist/vue-progressive-image.js",
"types": "./dist/vue-progressive-image.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsdown --watch",
"fix": "biome check --write",
"lint": "biome lint",
"build": "tsdown",
"test": "vitest",
"test:once": "vitest run",
"validate": "npm run lint && npm run test:once && npm run build",
"prepublishOnly": "npm run lint && npm run test:once && npm run build"
},
"author": {
"name": "Matteo Gabriele",
"email": "m.gabriele.dev@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatteoGabriele/vue-progressive-image.git"
},
"keywords": [
"progressive",
"image",
"img",
"lazy loading"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MatteoGabriele/vue-progressive-image/issues"
},
"homepage": "https://github.com/MatteoGabriele/vue-progressive-image#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "22.15.21",
"@vitejs/plugin-vue": "5.2.3",
"@vue/test-utils": "2.4.6",
"jsdom": "26.1.0",
"publint": "0.3.12",
"semantic-release": "24.2.3",
"tsdown": "0.15.10",
"typescript": "5.8.3",
"unplugin-vue": "6.2.0",
"vitest": "3.1.3",
"vue": "^3.5.13",
"vue-tsc": "3.1.2"
},
"peerDependencies": {
"vue": "^3.5.13"
}
}