-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "json-tools",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint -c .eslintrc.json ./src/**/**/*.{ts,tsx} --fix",
"preview": "vite preview",
"semantic-release": "semantic-release"
},
"dependencies": {
"@heroui/react": "^2.8.10",
"@iarna/toml": "^2.2.5",
"@jsonquerylang/jsonquery": "^5.1.1",
"@monaco-editor/react": "4.7.0-rc.0",
"@react-aria/visually-hidden": "3.8.19",
"@react-types/shared": "3.26.0",
"@types/validator": "^13.15.10",
"axios": "^1.16.0",
"clsx": "2.1.1",
"framer-motion": "11.15.0",
"js-base64": "^3.7.8",
"js-yaml": "^4.1.1",
"json5": "^2.2.3",
"jsonrepair": "^3.14.0",
"jsonwebtoken": "8.5.1",
"localforage": "^1.10.0",
"lossless-json": "^4.3.0",
"lucide-react": "^0.556.0",
"monaco-editor": "^0.52.2",
"next-themes": "^0.4.6",
"openai": "^4.104.0",
"quicktype-core": "23.0.171",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.3",
"react-syntax-highlighter": "^15.6.6",
"react-virtualized-auto-sizer": "^1.0.26",
"react-window": "^1.8.11",
"remark-gfm": "^4.0.1",
"sass": "^1.99.0",
"tailwind-merge": "^2.6.1",
"tailwind-variants": "0.1.20",
"tailwindcss": "^3.4.19",
"toml": "^3.0.0",
"validator": "^13.15.35",
"vanilla-jsoneditor-cn": "^3.12.2",
"xml-js": "^1.6.11",
"zustand": "^5.0.13"
},
"devDependencies": {
"@iconify/react": "^5.2.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "8.5.1",
"@types/node": "20.5.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vite-pwa/assets-generator": "^1.0.2",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "10.4.19",
"babel-plugin-react-compiler": "19.0.0-beta-aeaed83-20250323",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.0.0-beta-decd7b8-20250118",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "4.1.4",
"postcss": "8.4.38",
"prettier": "3.3.3",
"semantic-release": "^23.1.1",
"typescript": "5.6.3",
"vite": "^5.4.21",
"vite-plugin-monaco-editor-esm": "^2.0.2",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-pwa": "^1.3.0",
"vite-tsconfig-paths": "^4.3.2",
"workbox-window": "^7.4.1"
},
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}