-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.25 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
{
"name": "airolax-portfolio",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"build": "npm run projects:sync && tsc && vite build",
"postbuild": "node tools/stripLfsVideoStubs.mjs && node -e \"const fs=require('fs'); const path=require('path'); if(fs.existsSync('work')) fs.cpSync('work','dist/work',{recursive:true}); if(fs.existsSync('contact.html')) fs.copyFileSync('contact.html',path.join('dist','contact.html'));\"",
"preview": "vite preview",
"compress:videos": "node tools/compressVideos.mjs",
"projects:sync": "node tools/syncProjectMedia.mjs",
"collections:optimize": "node tools/optimizeCollection.mjs",
"collections:curate": "node tools/curateCollection.mjs",
"collections:clean": "node tools/cleanCollection.mjs",
"collections:ingest": "node tools/ingestAiContentCandidates.mjs",
"collections:videos": "node tools/rebuildCollectionVideos.mjs",
"ingest:gallery": "node tools/ingestGallery.mjs",
"optimize:model": "node tools/model-optimize/optimizeModel.mjs"
},
"devDependencies": {
"@gltf-transform/cli": "^4.2.1",
"gsap": "^3.12.2",
"sharp": "^0.33.5",
"terser": "^5.44.1",
"typescript": "^5.3.3",
"vite": "^5.0.8"
}
}