forked from maliknajjar/guifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "guifier",
"version": "1.0.27",
"type": "module",
"license": "MIT",
"description": "An interactive front-end toolkit simplifying JSON, YAML, TOML, and XML data. Visualize, edit, convert formats, and perform real-time data manipulations. Empower your data-driven apps with user-friendly data processing and interactive visualization.",
"repository": {
"type": "git",
"url": "https://github.com/maliknajjar/guifier.git"
},
"homepage": "https://guifier.com/",
"files": [
"types",
"images"
],
"types": "types/guifier/index.d.ts",
"main": "dist/Guifier.js",
"keywords": [
"json",
"yaml",
"toml",
"xml",
"gui",
"graphical interface",
"data format",
"parsing",
"visualization",
"modification",
"front-end",
"web development",
"user interface",
"data manipulation",
"interactive",
"data visualization",
"interactive GUI",
"JSON manipulation",
"YAML parser",
"TOML to JSON",
"XML data processing",
"web-based GUI",
"data format converter",
"JSON editor",
"YAML viewer",
"XML editor",
"TOML viewer",
"web development tools",
"front-end data visualization",
"data format GUI toolkit"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build_ts": "tsc",
"preview": "vite preview"
},
"devDependencies": {
"@types/clone": "^2.1.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^4.9.5",
"vite": "^4.3.1"
},
"dependencies": {
"@floating-ui/dom": "^1.5.4",
"clone": "^2.1.2",
"fast-xml-parser": "^4.2.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"material-icons": "^1.13.8",
"toml": "^3.0.0",
"toml-patch": "^0.2.3",
"vite-plugin-css-injected-by-js": "^3.2.1",
"xml-formatter": "^3.5.0",
"zod": "^3.21.4"
}
}