-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "utilplex",
"version": "3.1.0",
"private": true,
"type": "module",
"description": "UtilPlex — fast, static, zero-tracking developer utilities. Each page runs entirely in the browser.",
"license": "MIT",
"scripts": {
"build": "node builder/build.mjs",
"preview": "npx --yes serve site -l 4000 --no-port-switching",
"dev": "node builder/dev.mjs",
"clean": "node -e \"require('node:fs').rmSync('site',{recursive:true,force:true})\"",
"optimize-logo": "node tools/optimize-logo.mjs"
},
"devDependencies": {
"sharp": "^0.34.5"
},
"dependencies": {
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.10.8",
"@codemirror/search": "^6.5.8",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.36.1",
"@lezer/highlight": "^1.2.1",
"@tailwindcss/postcss": "^4.2.2",
"diff": "^7.0.0",
"esbuild": "^0.25.0",
"eta": "^4.5.1",
"js-beautify": "^1.15.4",
"js-yaml": "^4.1.0",
"postcss": "^8.5.10",
"prettier": "^3.4.2",
"sql-formatter": "^15.4.11",
"tailwindcss": "^4.2.2"
}
}