-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.68 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
{
"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-chat.git"
},
"private": true,
"license": "MIT",
"engines": {
"node": ">=24"
},
"devDependencies": {
"esbuild": "^0.27.2",
"tailwindcss": "^3.4.17",
"terser": "^5.31.0"
},
"scripts": {
"prepare:nanomem": "if [ -d nanomem/src ]; then exit 0; fi; if [ -n \"$GITHUB_PAT\" ]; then git submodule set-url nanomem \"https://${GITHUB_PAT}@github.com/OpenAnonymity/nanomem.git\" && git submodule sync; fi; git submodule update --init nanomem",
"prebuild": "npm run vendor:supertokens",
"build": "npm run prepare:nanomem && node scripts/build.mjs",
"preview": "python3 -m http.server 8080 -d dist",
"test": "node scripts/run-unit-tests.mjs",
"vercel:demo-config": "node scripts/generate-demo-vercel-config.mjs",
"vendor:supertokens": "node scripts/build-supertokens-vendor.mjs",
"audit:model-labels": "node --no-warnings scripts/audit-model-labels.mjs",
"predev": "npm run prepare:nanomem",
"dev": "node scripts/dev-server.mjs",
"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"
},
"dependencies": {
"supertokens-web-js": "^0.16.0"
}
}