-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
68
69
70
71
72
73
74
75
{
"name": "vcp",
"version": "0.9.60",
"private": false,
"author": "Alireza Safari <[email protected]> (http://alireza-safari.ir)",
"license": "MIT",
"module": "./dist/vcp.es.js",
"description": "Frontend printing dynamic data made easy!",
"exports": {
".": {
"import": "./dist/vcp.es.js"
},
"./dist/style.css": "./dist/style.css"
},
"keywords": [
"vcp",
"vue print",
"vue client print",
"template builder",
"vue report",
"vue report generator"
],
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/alireza0sfr/vue-client-print"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"deploy:gh-pages": "chmod +x ./deploy-gh-pages.sh && ./deploy-gh-pages.sh",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.5",
"jsdom": "^20.0.1",
"lodash": "^4.17.21",
"pinia": "^2.0.16",
"print-js": "^1.6.0",
"register-service-worker": "^1.7.2",
"typescript": "^4.7.2",
"vitest": "^0.24.3",
"vue-demi": "^0.12.5",
"vue-i18n": "^9.1.10"
},
"peerDependencies": {
"vue": ">=2.0.0 || >=3.0.0"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@types/lodash": "^4.14.189",
"@vitejs/plugin-vue": "^2.3.3",
"@vitest/ui": "^0.24.3",
"@vue/compiler-sfc": "^3.2.36",
"@vue/test-utils": "^2.1.0",
"c8": "^7.12.0",
"cz-conventional-changelog": "^3.0.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"vite": "^2.9.9",
"vite-plugin-libcss": "^1.0.5",
"vitepress": "^1.0.0-alpha.74",
"vue": "^3.2.36"
}
}