-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 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
{
"name": "@vakra-dev/superjson",
"version": "0.0.1",
"private": true,
"description": "A keyboard driven JSON explorer. Simple, beautiful, fast.",
"license": "MIT",
"author": "Nihal (https://github.com/nihalwashere)",
"repository": {
"type": "git",
"url": "https://github.com/vakra-dev/superjson.git"
},
"homepage": "https://superjson.dev",
"bugs": {
"url": "https://github.com/vakra-dev/superjson/issues"
},
"keywords": [
"json",
"viewer",
"editor",
"explorer",
"formatter",
"validator"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lint": "^6.4.0",
"@codemirror/search": "^6.5.0",
"@libsql/client": "^0.17.0",
"@tanstack/react-virtual": "^3.1.0",
"@uiw/react-codemirror": "^4.21.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.0",
"json-source-map": "^0.6.1",
"jsonrepair": "^3.13.2",
"lucide-react": "^0.563.0",
"lz-string": "^1.5.0",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.2.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.56.0",
"eslint-config-next": "^15.0.0",
"postcss": "^8.4.0",
"prettier": "^3.2.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0"
}
}