-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
84 lines (84 loc) · 1.81 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
76
77
78
79
80
81
82
83
84
{
"name": "vue-marmoset-viewer",
"type": "module",
"version": "4.0.14",
"private": false,
"description": "A responsive and configurable Marmoset Viewer component for Vue.",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"homepage": "https://vue-marmoset-viewer.yeger.eu",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/vue-marmoset-viewer"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"keywords": [
"vue",
"plugin",
"component",
"marmoset",
"3d"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/types/index.d.mts",
"files": [
"dist/*",
"src/**/*.vue"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "vite build",
"bundlesize": "bundlesize",
"check:publish": "publint run --strict",
"check:tsc": "tsc",
"check:vue": "vue-tsc",
"dev": "vite build --watch",
"lint": "yeger-lint",
"test": "vitest"
},
"peerDependencies": {
"vue": "^3.0.5"
},
"dependencies": {
"@yeger/debounce": "workspace:*"
},
"devDependencies": {
"@types/resize-observer-browser": "0.1.11",
"@vitejs/plugin-vue": "5.2.1",
"@vue/test-utils": "2.4.6",
"@yeger/tsconfig": "workspace:*",
"bundlesize2": "0.0.32",
"cross-env": "7.0.3",
"flush-promises": "1.0.2",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-lib": "workspace:*",
"vue": "3.5.13",
"vue-tsc": "2.2.0"
},
"publishConfig": {
"access": "public"
},
"bundlesize": [
{
"path": "./dist/*.mjs",
"maxSize": "1.5kb"
}
]
}