-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.34 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
{
"name": "comigo",
"version": "1.2.0",
"description": "Frontend for Comigo.",
"license": "MIT",
"browserslist": [
"baseline widely available on 2025-12-01"
],
"scripts": {
"fmt": "prettier --write package.json assets/frontend assets/static/js assets/static/css",
"build": "parcel build ./assets/frontend/main.js ./assets/frontend/styles.css --dist-dir assets/dist",
"dev": "parcel build ./assets/frontend/main.js ./assets/frontend/styles.css --dist-dir assets/dist --no-optimize",
"wails:prepare": "make wails-prepare",
"wails:dev": "make wails-dev",
"wails:build": "make wails-build",
"watch": "parcel watch ./assets/frontend/main.js ./assets/frontend/styles.css --dist-dir assets/dist --no-optimize",
"build:wasm": "GOOS=js GOARCH=wasm go build -o assets/static/wasm/archive.wasm ./cmd/archivewasm"
},
"dependencies": {
"@alpinejs/intersect": "3.16.3",
"@alpinejs/morph": "3.16.3",
"@alpinejs/persist": "3.16.3",
"alpinejs": "3.16.3",
"i18next": "26.4.0",
"i18next-browser-languagedetector": "8.2.1",
"screenfull": "^6.0.2",
"tailwindcss": "4.3.3"
},
"devDependencies": {
"@parcel/transformer-css": "^2.16.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "4.3.3",
"@tailwindcss/typography": "0.5.20",
"parcel": "^2.16.4",
"prettier": "3.9.6"
}
}