-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "vite-plugin-gutenberg-blocks",
"version": "2.3.0",
"description": "Vite-powered Gutenberg block development for Wordpress",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"bin": {
"init": "./bin/initEnvironment.js",
"create": "./bin/createBlock.js",
"publish": "./bin/publish.js"
},
"files": [
"/dist",
"/scripts",
"/bin",
"/stubs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evo-mark/vite-plugin-gutenberg-blocks.git"
},
"keywords": [
"vite",
"wordpress",
"gutenberg",
"blocks",
"react"
],
"author": "evomark",
"license": "MIT",
"homepage": "https://evomark.co.uk",
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 || ^23.0.0"
},
"devDependencies": {
"@types/grecaptcha": "^3.0.9",
"@types/node": "^22.7.7",
"@vitejs/plugin-react": "^4.3.3",
"sass": "^1.63.6"
},
"optionalDependencies": {
"sass": "^1.80.3"
},
"peerDependencies": {
"typescript": ">=4.9.4",
"vite": "^4.1.1 || ^5.0.0"
},
"dependencies": {
"chalk": "^2.4.2",
"esbuild": "^0.24.0",
"rollup": "^4.24.0",
"vite-plugin-static-copy": "^1.0.6"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}