-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "@falcondev-it/vue-elementor",
"version": "1.0.0",
"description": "Export Vue components as Elementor widgets using Vite",
"author": "Louis Haftmann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/falcondev-it/vue-elementor"
},
"keywords": [
"vue",
"wordpress",
"elementor",
"vite"
],
"main": "dist/index.js",
"source": "src/index.ts",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"vue-elementor": "bin/cli.mjs"
},
"scripts": {
"lint": "eslint --fix .",
"type-check": "tsc --noEmit",
"build": "parcel build",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"@parcel/config-default": "^2.8.3",
"@parcel/core": "^2.8.3",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"c12": "^1.1.0",
"consola": "^2.15.3",
"fs-extra": "^11.1.0",
"parcel": "^2.8.3",
"pkg": "^5.8.0",
"slugify": "^1.6.5",
"vite": "^4.1.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.11.18",
"eslint": "^8.32.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}