-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.61 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
{
"name": "interjector",
"version": "0.0.1",
"main": "scripts.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist/* && mkdir -p dist/static",
"build-frontend": "esbuild ./frontend/src/main.ts --bundle --minify --outdir=./dist/static --entry-names=[name].bundle --platform=browser",
"build-backend": "esbuild ./backend/src/server.ts --bundle --minify --outfile=./dist/server.bundle.js --platform=node --format=esm --packages=external",
"build": "npm run clean && npm run build-frontend && npm run build-backend && cp ./frontend/public/* ./dist/static/",
"dev": "node --env-file-if-exists=.env ./scripts/dev.mjs",
"dev-frontend": "npm run build-frontend -- --sourcemap --watch",
"dev-backend": "npm run build-backend -- --sourcemap --watch",
"start": "cd dist && node --env-file-if-exists=../.env server.bundle.js",
"typecheck": "tsc --noEmit",
"gen-cert": "bash ./scripts/gen-cert.sh",
"check-deepgram-key": "node --env-file-if-exists=.env ./scripts/check-deepgram-key.mjs",
"test": "node --test --experimental-strip-types"
},
"author": "Maoyin Sun <mail@maoyin.eu> (https://maoyin.eu/)",
"license": "MIT",
"description": "Interjector is a web application designed to enhance your communication experience. This tool offers a unique blend of features that can translate, summarize, and process your speech to provide a more comprehensive and engaging interaction. ",
"devDependencies": {
"@types/dom-speech-recognition": "^0.0.4",
"@types/node": "^22.5.2",
"esbuild": "0.25.0",
"typescript": "^5.6.0"
},
"allowScripts": {
"esbuild@0.25.0": true
}
}