-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "json-pretty-print",
"version": "3.3.6",
"description": "JSON Pretty Print Online",
"author": "Jason Lee <[email protected]>",
"private": true,
"scripts": {
"dev": "vite dev",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "playwright test",
"lint": "prettier --check . && eslint && npm run check",
"format": "prettier --write .",
"minify": "html-minifier-terser -c minifier.json --file-ext html --input-dir build/ --output-dir build/",
"build": "npm run lint && vite build && npm run minify",
"deploy": "npx gh-pages -d build -t -f"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@fontsource-variable/inter": "^5.1.0",
"@iconify-json/mdi": "^1.2.0",
"@iconify/tailwind": "^1.1.3",
"@playwright/test": "^1.47.2",
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.5.28",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/typography": "^0.5.15",
"@zerodevx/svelte-json-view": "^1.0.10",
"@zerodevx/svelte-toast": "^0.9.6",
"autoprefixer": "^10.4.20",
"copy-to-clipboard": "^3.3.3",
"daisyui": "^4.12.10",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.0",
"globals": "^15.9.0",
"html-minifier-terser": "^7.2.0",
"json5": "^2.2.3",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
"tailwindcss": "^3.4.12",
"vite": "^5.4.7",
"zipurl": "^1.0.1"
},
"type": "module",
"license": "ISC",
"repository": "github:zerodevx/json-pretty-print",
"homepage": "https://zerodevx.github.io/json-pretty-print/",
"keywords": [
"json",
"pretty-print",
"online"
]
}