-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.89 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
{
"name": "pixelated-web",
"displayName": "Pixelated",
"private": true,
"version": "1.4.9",
"description": "Pixelate your images online. Choose shapes, palettes, and effects.",
"author": "Jay Deaton",
"license": "MIT",
"type": "module",
"scripts": {
"build": "nuxt build",
"clean": "rm -rf dist",
"dev": "nuxt dev",
"fix": "eslint . --fix",
"generate": "nuxt generate",
"lint": "eslint .",
"postinstall": "nuxt prepare",
"preview": "nuxt preview",
"preversion": "npm ci && npm run validate",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"test": "NODE_OPTIONS=--no-experimental-webstorage vitest run",
"test:watch": "NODE_OPTIONS=--no-experimental-webstorage vitest",
"typecheck": "nuxt typecheck",
"validate": "npm run typecheck && npm run lint && npm test && npm run build"
},
"dependencies": {
"@nuxtjs/color-mode": "^4.0.0",
"@tailwindcss/vite": "^4.3.0",
"ansi_up": "^6.0.6",
"tailwindcss": "^4.3.0",
"lucide-vue-next": "^1.0.0",
"nuxt": "^4.4.6",
"pixelated": "^2.3.4",
"vue": "^3.5.13",
"vue-router": "^5.1.0"
},
"overrides": {
"esbuild": "0.28.1"
},
"devDependencies": {
"@nuxt/test-utils": "^4.0.3",
"@types/node": "^25.0.0",
"@typescript-eslint/parser": "^8.60.0",
"@vite-pwa/nuxt": "^1.1.1",
"@vue/test-utils": "^2.4.10",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-vue": "^10.9.1",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.3.3"
}
}