-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.9 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
{
"name": "opengpex",
"version": "1.3.3",
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"gen-plugin-types": "node scripts/gen-plugin-types.mjs",
"gen-plugin-types:all": "node scripts/gen-plugin-types.mjs --all",
"scan-plugins": "node scripts/scan-plugins.mjs",
"sync-plugins": "node scripts/sync-plugins.mjs",
"pack-plugin": "node scripts/pack-plugin.mjs",
"dev": "pnpm sync-plugins && pnpm scan-plugins && next dev --port 3030",
"build": "pnpm sync-plugins && pnpm scan-plugins && pnpm lint && next build",
"build:release": "pnpm sync-plugins -- --release && pnpm scan-plugins && pnpm lint && next build",
"start": "next start --port 3030",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "node scripts/postinstall-exts.mjs && pnpm sync-plugins && pnpm scan-plugins"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@jsquash/avif": "^2.1.1",
"@okathira/ghostpdl-wasm": "1.1.0",
"@resvg/resvg-wasm": "^2.6.2",
"exifreader": "^4.39.1",
"fflate": "^0.8.3",
"framer-motion": "^12.40.0",
"gsap": "^3.15.0",
"heic-to": "^1.4.1",
"immer": "^11.1.8",
"libraw-wasm": "^1.5.0",
"localforage": "^1.10.0",
"lucide-react": "^0.542.0",
"next": "16.2.6",
"piexifjs": "^1.0.6",
"polygon-clipping": "^0.15.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"unzipper": "^0.12.3",
"wasm-vips": "^0.0.18"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^20.19.41",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/unzipper": "^0.10.11",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.6",
"gifenc": "^1.0.3",
"gifuct-js": "^2.1.2",
"raw-loader": "^4.0.2",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}