-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "@ueberbit/vite-plugin-drupal",
"version": "0.0.10",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./composables": {
"types": "./dist/composables.d.ts",
"require": "./dist/composables.cjs",
"import": "./dist/composables.mjs"
},
"./ApiCustomElements": {
"types": "./dist/ApiCustomElements.d.ts",
"require": "./dist/ApiCustomElements.cjs",
"import": "./dist/ApiCustomElements.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18",
"pnpm": ">=7.6.0"
},
"scripts": {
"build": "unbuild",
"prepack": "pnpm run build"
},
"dependencies": {
"@iconify/json": "^2.1.141",
"@tailwindcss/forms": "^0.5.3",
"@ueberbit/postcss": "workspace:*",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/runtime-core": "^3.2.45",
"@vue/shared": "^3.2.45",
"autoprefixer": "^10.4.13",
"container-query-polyfill": "^1.0.2",
"css-has-pseudo": "^4.0.1",
"postcss": "^8.4.19",
"postcss-import": "^15.0.0",
"tailwindcss": "^3.2.4",
"unplugin-icons": "^0.14.13",
"vite": "^3.2.4",
"vue": "^3.2.45",
"vue-tsc": "^1.0.9"
},
"devDependencies": {
"@types/node": "^18.11.9",
"defu": "^6.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"livereload": "^0.9.3",
"magic-string": "^0.26.2",
"rollup": "^3.3.0",
"yaml": "^2.1.3"
}
}