forked from evo-mark/vite-plugin-gutenberg-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.79 KB
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
{
"name": "@yardinternet/vite-plugin-gutenberg-blocks",
"version": "2.7.1",
"description": "Yard-maintained fork of vite-plugin-gutenberg-blocks with theme-block support (entryDir prop).",
"author": {
"name": "Yard | Digital Agency",
"email": "info@yard.nl",
"url": "https://www.yard.nl/"
},
"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",
"test": "echo 'No tests specified'"
},
"bin": {
"init": "./bin/initEnvironment.js",
"create": "./bin/createBlock.js",
"publish": "./bin/publish.js"
},
"files": [
"/dist",
"/scripts",
"/bin",
"/stubs"
],
"keywords": [
"vite",
"wordpress",
"gutenberg",
"blocks",
"react"
],
"license": "MIT",
"homepage": "https://evomark.co.uk",
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0 || ^24.0.0 || ^25.0.0"
},
"devDependencies": {
"@types/grecaptcha": "^3.0.9",
"@types/node": "^22.19.21",
"@vitejs/plugin-react": "^6.0.2",
"sass": "^1.63.6"
},
"optionalDependencies": {
"sass": "^1.101.0"
},
"peerDependencies": {
"typescript": ">=4.9.4",
"vite": "^4.1.1 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"esbuild": "^0.28.1",
"rollup": "^4.62.0",
"vite-plugin-static-copy": "^4.1.1"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yardinternet/vite-plugin-gutenberg-blocks.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@yardinternet"
}
}