-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 884 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 884 Bytes
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
{
"name": "vue-2-img",
"version": "1.0.0",
"type": "module",
"engines": {
"node": "20.18.1"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/vue-2-img.es.js",
"browser": "dist/index.js",
"unpkg": "dist/index.js",
"style": "dist/vue-2-img.css",
"exports": {
".": {
"import": "./dist/my-lib.es.js",
"require": "./dist/my-lib.umd.js"
}
},
"scripts": {
"dev": "vite dev --port 4173",
"build": "npm run build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"canvg": "^4.0.3",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1"
},
"devDependencies": {
"@types/node": "^24.0.10",
"typescript": "~5.8.3",
"vite": "^7.0.2"
}
}