-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.23 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
{
"type": "module",
"name": "grapesjs-icons",
"version": "0.0.4",
"description": "GrapesJS icons plugin with Iconify",
"author": "Benjamin Grand",
"license": "BSD-3-Clause",
"main": "./dist/plugin.cjs",
"module": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"require": "./dist/plugin.cjs",
"import": "./dist/plugin.js"
}
},
"files": [
"./dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"commit": "git add . && git status && git-cz && git status"
},
"dependencies": {
"iconify-icon": "1.0.8"
},
"devDependencies": {
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"grapesjs": "0.21.4",
"typescript": "5.1.6",
"vite": "4.4.9",
"vite-plugin-dts": "3.5.1"
},
"peerDependencies": {
"grapesjs": ">=0.17.26"
},
"homepage": "https://github.com/bgrand-ch/grapesjs-icons",
"repository": {
"type": "git",
"url": "https://github.com/bgrand-ch/grapesjs-icons.git"
},
"bugs": {
"url": "https://github.com/bgrand-ch/grapesjs-icons/issues"
},
"keywords": [
"gjs",
"grapesjs",
"plugin",
"icons",
"icon",
"iconify",
"svg"
]
}