-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (46 loc) · 2.17 KB
/
package.json
File metadata and controls
52 lines (46 loc) · 2.17 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@augmentos/notify",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"dev": "bun --hot src/index.ts",
"docker:dev": "./scripts/docker-dev.sh",
"docker:dev:detach": "./scripts/docker-dev.sh -d",
"docker:stop": "docker-compose -f docker/docker-compose.dev.yml -p dev down",
"docker:build": "docker-compose -f docker/docker-compose.dev.yml -p dev build",
"ngrok": "ngrok http --url=notify.ngrok.dev 8040",
"build": "bun build ./src/index.ts --outdir ./dist --target bun",
"start": "bun src/index.ts",
"add": "docker exec -it notify-dev bun add",
"add:dev": "docker exec -it notify-dev bun add -d",
"remove": "docker exec -it notify-dev bun remove",
"test": "docker exec -it notify-dev bun test",
"lint": "docker exec -it notify-dev npx eslint 'src/**/*.ts'",
"logs": "docker logs -f notify-dev",
"restart": "docker restart notify-dev",
"exec": "docker exec -it notify-dev",
"sh": "docker exec -it notify-dev bash",
"prod": "docker-compose -f docker/docker-compose.yml up",
"prod:detach": "docker-compose -f docker/docker-compose.yml up -d",
"prod:stop": "docker-compose -f docker/docker-compose.yml down",
"prod:build": "docker-compose -f docker/docker-compose.yml build",
"image:build": "docker build -t augmentos/notify:latest -t augmentos/notify:$npm_package_version -f docker/Dockerfile .",
"image:push": "docker push augmentos/notify:latest && docker push augmentos/notify:$npm_package_version",
"image:release": "npm run image:build && npm run image:push",
"ghcr:build": "docker build -t ghcr.io/augmentos/notify:latest -t ghcr.io/augmentos/notify:$npm_package_version -f docker/Dockerfile .",
"ghcr:push": "docker push ghcr.io/augmentos/notify:latest && docker push ghcr.io/augmentos/notify:$npm_package_version",
"ghcr:release": "npm run ghcr:build && npm run ghcr:push"
},
"dependencies": {
"@augmentos/sdk": "^1.1.7",
"@types/express": "^5.0.1",
"@types/node": "^22.13.14",
"@types/ws": "^8.18.0",
"express": "^4.21.2",
"path": "^0.12.7",
"ws": "^8.18.1"
},
"devDependencies": {
"typescript": "^5.0.0"
}
}