forked from holtwick/briefing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "briefing",
"version": "3.1.2",
"private": true,
"description": "Secure direct video chat",
"repository": {
"type": "git",
"url": "https://github.com/holtwick/briefing.git"
},
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"license": "EUPL-1.2",
"author": {
"name": "Dirk Holtwick",
"email": "[email protected]",
"url": "https://holtwick.de"
},
"type": "module",
"scripts": {
"build": "cross-env MODE=production nr build:basis",
"build:basis": "nr clean && zerva build src/zerva/index.ts && vite build --mode $MODE",
"build:docker": "cross-env MODE=production-docker nr build:basis && ./scripts/make-docker.sh",
"check": "vue-tsc --noEmit -p ./tsconfig.json",
"clean": "rm -rf dist www",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"reset": "rm -rf node_modules pnpm-lock.yaml dist dist_www www",
"serve": "cross-env ZEED=* LEVEL=i node dist/main.cjs",
"start": "cross-env DEBUG=1 ZEED=* LEVEL=a zerva src/zerva/index.ts",
"test": "vitest",
"upload:dockerhub": "nr build:docker && cd docker && docker login -u holtwick && docker buildx build --platform linux/arm64,linux/amd64,linux/s390x,linux/arm/v7,linux/arm/v6 -t holtwick/briefing:$npm_package_version -t holtwick/briefing:latest --push ."
},
"dependencies": {
"@sentry/browser": "^7.41.0",
"@sentry/tracing": "^7.41.0",
"@vueuse/core": "^9.13.0",
"@zerva/core": "^0.20.1",
"@zerva/http": "^0.20.1",
"@zerva/websocket": "^0.20.1",
"clipboard-copy": "^4.0.1",
"lodash": "^4.17.21",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"zeed": "^0.10.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.36.0",
"@antfu/ni": "^0.20.0",
"@types/node": "^18.14.6",
"@vitejs/plugin-vue": "^4.0.0",
"@zerva/bin": "^0.20.1",
"@zerva/vite": "^0.20.1",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"ministun": "^1.0.6",
"sass": "^1.58.3",
"tsc": "^2.0.4",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}