-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "jsonlab",
"description": "Modern, feature-rich web-based JSON editor designed for developers who work with JSON.",
"version": "1.0.0",
"private": true,
"type": "module",
"repository": "danivek/JSONLab",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"preview": "vite preview",
"generate:icons": "node scripts/generate-icons.js"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.15.0",
"prettier": "^3.5.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.8",
"sharp": "^0.34.5",
"terser": "^5.39.0",
"vite": "^6.1.1",
"vite-plugin-pwa": "^1.2.0"
},
"dependencies": {
"@jsonquerylang/jsonquery": "^5.1.1",
"fast-json-patch": "^3.1.1",
"jmespath": "^0.16.0",
"jsonpath-plus": "^10.4.0",
"jsonrepair": "^3.13.3",
"lucide": "^1.7.0",
"monaco-editor": "^0.55.1"
}
}