-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
{
"name": "@plenny/ui",
"description": "User interface library written in Vue.",
"keywords": ["plenny", "vue", "ui"],
"version": "0.1.61",
"license": "MIT",
"homepage": "https://github.com/rafalkrawiec/plenny-ui",
"repository": {
"type": "git",
"url": "https://github.com/rafalkrawiec/plenny-ui.git"
},
"bugs": {
"url": "https://github.com/rafalkrawiec/plenny-ui/issues",
"email": "[email protected]"
},
"author": {
"name": "Rafał Krawiec",
"email": "[email protected]"
},
"type": "module",
"types": "./dist/ui.d.ts",
"module": "./dist/ui.js",
"main": "./dist/ui.cjs",
"files": ["dist"],
"exports": {
".": {
"types": "./dist/ui.d.ts",
"import": "./dist/ui.js",
"require": "./dist/ui.cjs"
}
},
"scripts": {
"dev": "vite build -m development --watch",
"build": "vite build && tail -n +64 src/extensions.ts >> dist/ui.d.ts"
},
"devDependencies": {
"@plenny/vite-externalizer": "^0.1.2",
"@types/node": "^22.7.8",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
"@types/lodash.isequal": "^4.5.8",
"@vue/tsconfig": "^0.5.1",
"@vue/language-server": "^2.1.6",
"@vitejs/plugin-vue": "^5.1.4",
"lightningcss": "^1.27.0",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"sass": "^1.80.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"peerDependencies": {
"@ckeditor/ckeditor5-core": "^43.2.0",
"@ckeditor/ckeditor5-vue": "^7.2.0",
"@floating-ui/vue": "^1.1.5",
"@plenny/connect": "^0.1.11",
"@plenny/support": "^0.1.0",
"@plenny/translator": "^0.1.2",
"@vue/server-renderer": "^3.5.12",
"@vueuse/core": "^11.1.0",
"@vueuse/integrations": "^11.1.0",
"focus-trap": "^7.6.0",
"focus-trap-vue": "^4.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"pinia": "^2.2.4",
"tabbable": "^6.2.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
}