-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.07 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.07 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
{
"name": "oa-chat",
"version": "1.0.0",
"description": "A ChatGPT-like AI chat app implementing unlinkable inference, where every session is unlinkable from each other and from your identity",
"author": "Open Anonymity Team",
"homepage": "https://openanonymity.ai",
"repository": {
"type": "git",
"url": "https://github.com/OpenAnonymity/oa-fastchat.git"
},
"private": true,
"license": "AGPL-3.0-or-later",
"devDependencies": {
"esbuild": "^0.27.2",
"terser": "^5.31.0",
"tailwindcss": "^3.4.17"
},
"scripts": {
"build": "if [ -f scripts/build.mjs ]; then node scripts/build.mjs; else rm -rf dist && mkdir -p dist && cp -R chat dist/; fi",
"preview": "python3 -m http.server 8080 -d dist",
"dev": "python3 -m http.server 8080 -d chat",
"tailwind:build": "tailwindcss -c tailwind.config.js -i chat/tailwind.input.css -o chat/tailwind.generated.css --minify",
"tailwind:watch": "tailwindcss -c tailwind.config.js -i chat/tailwind.input.css -o chat/tailwind.generated.css --watch",
"fonts:sync": "node scripts/sync-fonts.mjs"
}
}