-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.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
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
{
"name": "pixelated-css",
"version": "0.1.0",
"private": true,
"type": "module",
"pnpm": {
"overrides": {
"@codemirror/state": "6.5.2",
"@codemirror/view": "6.38.1",
"@codemirror/autocomplete": "6.18.6",
"@codemirror/commands": "6.8.1",
"@codemirror/language": "6.11.3",
"@codemirror/lint": "6.8.5"
}
},
"scripts": {
"build": "node scripts/generate-tailwind-standalone.mjs && next build --webpack",
"build:tailwind": "node scripts/generate-tailwind-standalone.mjs",
"check": "next lint && tsc --noEmit",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/language": "^6.11.3",
"@codemirror/lint": "^6.8.5",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.1",
"@sparticuz/chromium": "^131.0.0",
"@uiw/react-codemirror": "^4.25.1",
"dompurify": "^3.3.3",
"next": "^16.0.10",
"pixelmatch": "^7.1.0",
"pngjs": "^6.0.0",
"puppeteer-core": "^24.17.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.0.15",
"@types/dompurify": "^3.2.0",
"@types/node": "^20.14.10",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.23.0",
"eslint-config-next": "^16.0.10",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.15",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"ct3aMetadata": {
"initVersion": "7.39.3"
},
"packageManager": "pnpm@10.26.0"
}